diff --git a/.gitattributes b/.gitattributes index 10a16e6..1c88e69 100644 --- a/.gitattributes +++ b/.gitattributes @@ -40,10 +40,27 @@ *.mov binary # Override what is considered "vendored" by GitHub's linguist: -/deps/** linguist-vendored=false -/lib/node_modules/** linguist-vendored=false linguist-generated=false -test/fixtures/** linguist-vendored=false -tools/** linguist-vendored=false +/lib/node_modules/** -linguist-vendored -linguist-generated -# Override what is considered "documentation" by GitHub's linguist: -examples/** linguist-documentation=false +# Configure directories which should *not* be included in GitHub language statistics: +/deps/** linguist-vendored +/dist/** linguist-generated +/workshops/** linguist-vendored + +benchmark/** linguist-vendored +docs/* linguist-documentation +etc/** linguist-vendored +examples/** linguist-documentation +scripts/** linguist-vendored +test/** linguist-vendored +tools/** linguist-vendored + +# Configure files which should *not* be included in GitHub language statistics: +Makefile linguist-vendored +*.mk linguist-vendored +*.jl linguist-vendored +*.py linguist-vendored +*.R linguist-vendored + +# Configure files which should be included in GitHub language statistics: +docs/types/*.d.ts -linguist-documentation diff --git a/.github/workflows/productionize.yml b/.github/workflows/productionize.yml index ec90164..f4575e9 100644 --- a/.github/workflows/productionize.yml +++ b/.github/workflows/productionize.yml @@ -94,8 +94,8 @@ jobs: node -e "var pkg = require( './package.json' ); pkg.dependencies[ '@stdlib/error-tools-fmtprodmsg' ] = '^$PKG_VERSION'; require( 'fs' ).writeFileSync( 'package.json', JSON.stringify( pkg, null, 2 ) );" fi - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -191,8 +191,8 @@ jobs: # Pin action to full length commit SHA uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -344,7 +344,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -367,8 +366,8 @@ jobs: # Pin action to full length commit SHA uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -518,7 +517,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -541,8 +539,8 @@ jobs: # Pin action to full length commit SHA uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -698,7 +696,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -738,8 +735,8 @@ jobs: echo "bump=true" >> $GITHUB_OUTPUT fi - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' if: steps.check-if-bump.outputs.bump run: | git config --local user.email "noreply@stdlib.io" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3eec50e..2888b88 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -72,8 +72,8 @@ jobs: node-version: 20 timeout-minutes: 5 - # Configure git: - - name: 'Configure git' + # Configure Git: + - name: 'Configure Git' run: | git config --local user.email "noreply@stdlib.io" git config --local user.name "stdlib-bot" @@ -94,6 +94,10 @@ jobs: # Replace branch in README.md link definitions for badges with the new version: find . -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/branch([=:])[^ ]+/branch\1v${NEW_VERSION}/g" + # Rewrite CHANGELOG.md to replace "Unreleased" with the new version: + sed -Ei "s/Unreleased/${NEW_VERSION}/g" CHANGELOG.md + sed -Ei "s/unreleased/v${NEW_VERSION}/g" CHANGELOG.md + # Create a new commit and tag: git add package.json README.md git commit -m "Release v${NEW_VERSION}" @@ -202,7 +206,7 @@ jobs: # Publish package to npm: - name: 'Publish package to npm' # Pin action to full length commit SHA - uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 # v3.0.1 + uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1 with: token: ${{ secrets.NPM_TOKEN }} access: public @@ -218,7 +222,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2949520..9342c72 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -95,6 +95,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_bundles.yml b/.github/workflows/test_bundles.yml index 6d77abd..5b5879a 100644 --- a/.github/workflows/test_bundles.yml +++ b/.github/workflows/test_bundles.yml @@ -94,7 +94,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -139,7 +138,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() @@ -184,6 +182,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index f4eda1e..2bcf0cd 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -119,7 +119,6 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index 07fb4f6..2b16889 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -81,6 +81,5 @@ jobs: uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2 with: status: ${{ job.status }} - steps: ${{ toJson(steps) }} channel: '#npm-ci' if: failure() diff --git a/.npmrc b/.npmrc index 5af9067..58dbd10 100644 --- a/.npmrc +++ b/.npmrc @@ -27,5 +27,5 @@ shrinkwrap = false # Disable automatically "saving" dependencies on install: save = false -# Generate provenance metadata: -provenance = true +# Do not generate provenance metadata: +provenance = false diff --git a/CHANGELOG.md b/CHANGELOG.md index 21ee94c..95e81d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,4 +2,187 @@ > Package changelog. -See [GitHub Releases](https://github.com/stdlib-js/stats-base-dists-poisson-mgf/releases) for the changelog. \ No newline at end of file +
+ +## 0.2.2 (2024-07-28) + +
+ +### Commits + +
+ +- [`41d41e9`](https://github.com/stdlib-js/stdlib/commit/41d41e959b4eaad3c631e6898e3144a4015a5458) - **test:** include trailing newlines in Julia-generated JSON fixtures _(by Philipp Burckhardt)_ +- [`9ed7d0e`](https://github.com/stdlib-js/stdlib/commit/9ed7d0e7d57edb5ad0dfb65c944bed87d475cbf3) - **chore:** add missing trailing newlines _(by Philipp Burckhardt)_ + +
+ +
+ + + +
+ +### Contributors + +A total of 1 person contributed to this release. Thank you to this contributor: + +- Philipp Burckhardt + +
+ + + +
+ + + +
+ +## 0.2.1 (2024-02-24) + +No changes reported for this release. + +
+ + + +
+ +## 0.2.0 (2024-02-14) + +No changes reported for this release. + +
+ + + +
+ +## 0.1.0 (2023-09-24) + +
+ +### Features + +- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864) - update minimum TypeScript version + +
+ + + +
+ +### BREAKING CHANGES + +- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864): update minimum TypeScript version +- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864): update minimum TypeScript version to 4.1 + + - To migrate, users should upgrade their TypeScript version to at least version 4.1. + +
+ + + +
+ +### Commits + +
+ +- [`81ca3ab`](https://github.com/stdlib-js/stdlib/commit/81ca3ab33585150e98a402b3e6d57beb1ec36864) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_ +- [`d5fa8e8`](https://github.com/stdlib-js/stdlib/commit/d5fa8e8a6267a837a25a7027e9fe3e847bc2d1c5) - **test:** use strictEqual checks _(by Philipp Burckhardt)_ +- [`37f032d`](https://github.com/stdlib-js/stdlib/commit/37f032d4a571f667ea99f6f52f60b5d736c627f3) - **docs:** render equations via math code blocks _(by Philipp Burckhardt)_ + +
+ +
+ + + +
+ +### Contributors + +A total of 1 person contributed to this release. Thank you to this contributor: + +- Philipp Burckhardt + +
+ + + +
+ + + +
+ +## 0.0.7 (2022-07-08) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.6 (2022-02-16) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.5 (2021-08-22) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.4 (2021-07-07) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.3 (2021-06-27) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.2 (2021-06-16) + +No changes reported for this release. + +
+ + + +
+ +## 0.0.1 (2021-06-15) + +No changes reported for this release. + +
+ + + diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 4500383..26a1c46 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -5,6 +5,7 @@ Adarsh Palaskar Aditya Sapra AgPriyanshu18 <113460573+AgPriyanshu18@users.noreply.github.com> +Aleksandr <112382387+alextes90@users.noreply.github.com> Ali Salesi Aman Bhansali Amit Jimiwal @@ -18,6 +19,7 @@ Chinmay Joshi <86140365+JawHawk@users.noreply.github.com> Christopher Dambamuromo Dan Rose Daniel Killenberger +Daniel Yu <40680511+Daniel777y@users.noreply.github.com> Dominik Moritz Dorrin Sotoudeh EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com> @@ -25,6 +27,7 @@ Frank Kovacs Golden Kumar <103646877+AuenKr@users.noreply.github.com> Gunj Joshi Harshita Kalani +Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com> Jaimin Godhani <112328542+Jai0401@users.noreply.github.com> James Gelok Jaysukh Makvana @@ -48,6 +51,7 @@ Muhammad Haris Naresh Jagadeesan NightKnight Nithin Katta <88046362+nithinkatta@users.noreply.github.com> +Nourhan Hasan <109472010+TheNourhan@users.noreply.github.com> Ognjen Jevremović Oneday12323 <107678750+Oneday12323@users.noreply.github.com> Philipp Burckhardt @@ -60,6 +64,7 @@ Pushpendra Chandravanshi Raunak Kumar Gupta Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com> Ricky Reusser +Ridam Garg <67867319+RidamGarg@users.noreply.github.com> Robert Gislason Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com> Rutam <138517416+performant23@users.noreply.github.com> @@ -69,8 +74,11 @@ Seyyed Parsa Neshaei Shashank Shekhar Singh Shivam <11shivam00@gmail.com> Shraddheya Shendre +Shubh Mehta <93862397+Shubh942@users.noreply.github.com> Shubham Mishra -Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com> +Sivam Das <100067002+Sivam2313@users.noreply.github.com> +Snehil Shah +Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com> Spandan Barve Stephannie Jiménez Gacha Suraj kumar <125961509+kumarsuraj212003@users.noreply.github.com> @@ -79,8 +87,10 @@ Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com> Utkarsh Utkarsh Raj Varad Gupta +Xiaochuan Ye Yernar Yergaziyev naveen nishant-s7 <97207366+nishant-s7@users.noreply.github.com> orimiles5 <97595296+orimiles5@users.noreply.github.com> +rainn <88160429+AmCodesLame@users.noreply.github.com> rei2hu diff --git a/README.md b/README.md index 989dc45..8799b97 100644 --- a/README.md +++ b/README.md @@ -228,8 +228,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors]. [npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-poisson-mgf.svg [npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-poisson-mgf -[test-image]: https://github.com/stdlib-js/stats-base-dists-poisson-mgf/actions/workflows/test.yml/badge.svg?branch=main -[test-url]: https://github.com/stdlib-js/stats-base-dists-poisson-mgf/actions/workflows/test.yml?query=branch:main +[test-image]: https://github.com/stdlib-js/stats-base-dists-poisson-mgf/actions/workflows/test.yml/badge.svg?branch=v0.2.2 +[test-url]: https://github.com/stdlib-js/stats-base-dists-poisson-mgf/actions/workflows/test.yml?query=branch:v0.2.2 [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-poisson-mgf/main.svg [coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-poisson-mgf?branch=main diff --git a/package.json b/package.json index a9d01a8..5b4a200 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stdlib/stats-base-dists-poisson-mgf", - "version": "0.2.1", + "version": "0.2.2", "description": "Poisson distribution moment-generating function (MGF).", "license": "Apache-2.0", "author": { @@ -37,19 +37,19 @@ "url": "https://github.com/stdlib-js/stdlib/issues" }, "dependencies": { - "@stdlib/math-base-assert-is-nan": "^0.2.1", + "@stdlib/math-base-assert-is-nan": "^0.2.2", "@stdlib/math-base-special-exp": "^0.2.3", - "@stdlib/utils-constant-function": "^0.2.1", - "@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.1" + "@stdlib/utils-constant-function": "^0.2.2", + "@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2" }, "devDependencies": { - "@stdlib/constants-float64-eps": "^0.2.1", - "@stdlib/math-base-special-abs": "^0.2.1", + "@stdlib/constants-float64-eps": "^0.2.2", + "@stdlib/math-base-special-abs": "^0.2.2", "@stdlib/random-base-randu": "^0.2.1", "tape": "git+https://github.com/kgryte/tape.git#fix/globby", "istanbul": "^0.4.1", "tap-min": "git+https://github.com/Planeshifter/tap-min.git", - "@stdlib/bench-harness": "^0.2.1" + "@stdlib/bench-harness": "^0.2.2" }, "engines": { "node": ">=0.10.0", diff --git a/test/fixtures/julia/large.json b/test/fixtures/julia/large.json index 3146988..4a286ef 100644 --- a/test/fixtures/julia/large.json +++ b/test/fixtures/julia/large.json @@ -1 +1 @@ -{"expected":[1456.014297282561,2.3725947746357238e33,145.61200550276973,2.6806284197375615e37,9.482645499036066e26,2.3210195377384315e15,2.779026913611268e22,2.1385205766462586e59,6.145931696428056,7.195838142339002e7,1.0625190834698768,3.6309406979685013e27,591.6085292416168,7.994664883255653e7,2.4757512349462007e28,16.72225111148463,63.06027356545577,1.992402070545488e25,517.3025249114247,472393.0953066832,1.8303918171319387e9,8.125673841255609e8,1.4582905872982121,3.6304527867203955e34,1.1214837493215757e73,1.2477078659673353,2.863124991801196,3.7420367883934587,1.1066720371053275e23,300706.1681391346,7.4469815318868e18,8.926991377304607e10,2.2480873220975073e12,1.7055516909573343,1015.2006663384686,3.1228271314102687e61,8.708744657860403e22,2.41803004074589e7,170169.5725686898,1.0456432706702476e7,6.002937986945754e55,4017.320020747161,305391.44958871894,1.2819207602091057e6,2.388199273435116e25,8.30688868846603e29,8.081786475455903,2.5154835220431764,6.445619519560216e30,2.4995601373001626,727289.62522037,1.2179838562655456e38,9.59553365748665,2.3567115057297845,3.801829794683718e35,7.973569206010873e12,1.676641663478209e14,44.35399382159306,1.7146068556604984e11,11.327181847028463,2.1393228176520453e6,15.86088001654156,7.152286968109648,2.310295210810735e7,4.234119849348454e10,2.9293383704937026e50,1.648268291056391e44,1.552669069739535e8,1.7254557272238533e6,1.294821982001551,3.080321321465162e28,601490.2810028295,6.565022910741882e24,5.721476134311033e11,6.267143550289238e21,3.3254825610754413,1.7118468187404554,1.4072568744566873,2.6341803970547328e14,1390.4281284271692,4.88610542595824e14,273.8380609226381,257707.34590795872,1.80616584820608e9,6.726338332228595,2.778766087600674e7,2.3488908826231833e19,1.694429546188564,2942.577826392082,2.0498113041214294e10,2.3201490112663e11,3.9637386181510635e10,79090.50406673644,3.522122386739488e19,8.0427537439321745e6,2530.088311846699,1.3044005149441633,1.38997154582794e56,130.1893877132508,17.24525206700316,5.715381139574692e15,9.69209182463869e10,9.01015643621768,6.596552516357442e37,2.325561613042191,2163.851905745897,4.00633587030413e11,110.63646135495908,14.278412018307128,6.700435102712295e18,1606.459808881306,375047.92659904616,3.8438709405848066e12,26.74920096741175,2.1771660211030723,1.2400409220822708,48.91277654692667,3.196146852135888e14,4.337989264035364e25,3543.85996864334,668559.0163512095,1375.0588610785012,6.591975885185881e8,5.040757118956631e9,3459.8298809442113,1.1526046479739696e16,2.078277315492006,2935.5752147090616,7.1021638171347625,24.30283552354175,21.200249176565976,3.55129401887639e10,2.8981949019419655e39,372674.5343690353,2.7638742233535244e21,2.6194516360778484,83.99316437985607,15.746930938155918,2.2317286925254492e18,1.9609822048510916e9,3.343269777130014e9,402.6430695204589,58.796249152676715,1.4538590858103862e9,1.8856908268856182e9,7.443697433903891,1.168382216413019e59,2.66909248505117,1.7374962591398412e8,1.0164374857872813,2.4788583870713897e18,1.5909997172865373e17,24.345246908307317,1.709118472237585e6,9.978754441120044e10,8.476465381899329e10,3.463235846630005e28,2.6585079385148025,16687.578447098767,1156.4930444143838,1.8903498123049968e17,4.5262405031118895,2.4227080832320294e14,1.114624536383613e17,11.29261787797065,5.036214734867071e44,2.236954207844221,4528.017281664724,2.796825387562547e42,4.445620307174975e6,49498.995338142384,1.3677431043733757e11,4.037930905030342e11,1.0288332281867679e6,1.584746584544996,5.896949680132622e30,2.0423069471272184,1.5348460212341943e25,5.467584754297361e10,8.651866770484587e11,2.88127402611235,144.1516026242259,4.3417530978632745e11,8.344986172699094e33,4.97160264034997,1.8727443175040009e6,1.0046349083552364,1.1269077685368454e18,2.1333273792541113e12,5.082496305925955e26,13.269074498421318,1982.8525096198493,3.9942002925445497,1.8965110340516873e7,26.579441245038844,2325.099907789118,2.0014832711532515e12,1.2191168261851693,1.607819551821407,1.5805141814662984,2.644475858812385e7,7.330184764036643e16,30212.018686219813,4.339105874004928e15,1.2998053052022656e13,85.02795029391125,48368.90919301075,2.0693136878607566e29,8.290579792897668e11,126.12393575322514,2.9174674304782606e38,1.1660968262288403e40,2.9682314815096635,2.554173202333701e16,1.1057156352504928e17,4411.940435376224,2.9985316354591147e12,3.2072985203306504e16,185.36390708968037,7.930935786764854,81104.78393632142,1.5900788094092407e12,2.1940206735920416e41,1.5186446344359556e12,4.230981500083172e6,3.8045300942062507e6,1.3182381211430003e63,20642.06224001862,7.5200125919086975,2.301021870061129e15,3.5176753850185657e11,5.887852474573305e9,7.33109707058408e13,8.612801891176108,4.165133803815001e34,1.1272247142407037e7,5.65909119888073e38,42.394320932199086,3.6715406333200106e14,1.0231482411698168e13,5.341369226999126e21,7.178053452327908,830.6450483087995,1.0519727637665942e14,2.0959546747447555e58,9.99477968339408e37,231835.8678028805,5438.16828534474,53.31489572481991,2.911482783182847e53,4.606417969646453e43,4.1840969320780164e13,7757.173622543783,33276.10334915529,1.2538525990258483e20,3.7841969176063766e6,3841.426407274165,9.113953883201882e7,1.0668977490510263,7.693585012655014e19,208771.42236415134,3.214701393440767,3.485067219234342e27,223.48468098767626,2.521091221395146,8.07183118345522,5.3535465818159654e35,2.904822662836267e7,5.0083409877485,276397.8725553558,555.7516225000509,1.3902852584952323e9,28.205189314518165,1.954166598801924e10,454925.26197691343,3.5601185548834355e17,2.7454877060703566,28.807183466128013,9.05174855935235e28,1.1140951707895202e22,463.41574270167655,6.960615311552281e20,8.812397009685292e35,16.97425736464117,3.5297334346244984e13,1.5625118598297653e9,6.183632544955799,8.630754489635514e17,1.3304423962325693e10,144.22771380704802,3.3367200674212416,4.241007047900173,4.891107198719988e6,148925.07744188205,3.228548416235621,1.742096292921586e47,17088.28799872012,4.1690451800170634e18,245.30623160134087,1.9206435306264422e25,3.3943591033473925,1.7144054058469425,44.659404609098516,175132.67288952917,1.0067855551654878e33,1.0645676422161322e16,3.7521605992469195e13,1.7721608292844082e49,335.64833249964823,342.71990990510903,2.015548135921338e49,1.0578455390039915e55,2.0109267473239276,3.912387171338561e7,6.105105021187542,8.411106856984736,1.352344893409451e8,4.1840841159345207e9,1841.0913047152385,7.476929721573637e7,2.1710481571289207e25,1.9313387840627316e16,5.179302782493277e14,2.077355582205567,4.7931463787241935,227941.82406446149,6.187061236992349e27,8.49519057942453e14,1.5115445178331118e26,2.5566118010564644e14,3.5823635168998728e19,3.901417311534572e34,1.7733880579372403,1.0740509530279235e39,14.296594383455272,469.45610653287946,1.7612424250223668,5.493608787238008e15,2.346994363566395,1.766060320388553e18,378178.7344897626,879.7276621164405,7859.58984716181,5.0444393361001876e36,1.1228487040747421,6.745386188912996,1.9943263055892145e13,1.0054523589830942,10.808802266052917,2.0371606715572137e26,16.978788473247594,177.4382254879419,1.4763404943725105e37,1.19716016633537,1.826449285483941e20,5.301704272874697,158.92923795245935,1229.4867324038244,16.480588889572445,528.7532726677629,8.329950604358595e31,1.6615616984342716,5.92884008873352e8,20.272518851816052,5.47491176900147e17,52139.320140276344,1.0849395182959838e6,1.5582955124103632e15,1.0448197058613689e6,4.1133358394152545e6,21.7142947170976,1.0147886420891026e17,1.549204662843581,204.7171996442499,238.0947388366059,2.0363366887120793,2.879212627567348e46,4.270168230421276e8,2.3016125109063303e8,2.0656963279099054,7.530394064241854e51,2.497251711032537,56.90091967715496,8.631520933936503,4.555086232133444e15,2.3055086234985707,24731.354666047126,1.5161803919335531e13,669.2090461744502,1.1774280403491069,4401.134451533944,2.429041082159789,59.98424041944885,4.096103616934819,732.5813262181127,1.0145616959982958e7,3135.8366655074224,1.2292394711732535e9,8.133562945129218e49,8.770008818063684e9,5.084921752126868e70,3.828954965372287,74.44074976216965,43126.32665598274,2.20955288307584e12,1.2846949329818906e13,1.2628986562262682e17,42.35392603948613,3.4249041873006094e14,1.2275309666308238e11,1.4243592269597871e7,3.303224180005095e7,78.78218760348318,5.1106162961225,3.6506730858823577e31,8.029614520754656,10166.09858132508,2.1405434944599214e8,1165.2848769953193,3.2801641876973466,1.0226714973830853e11,1.100366643389685e10,9.790998475325049e21,71829.04273620166,6.242508832885144e6,1.3987141713808562,1.9396365844247725,128929.06889818139,1.0802029202278035e17,62131.11772289577,1.05785937905062e42,544474.3524950616,7.379802384417673e51,2.2393396923377872e41,6.378744083450778,25369.59340802383,2.910842673667677e11,36.20109927500245,2.0640077525192732e30,2.47030126384519e9,4.941485963823498,1.443536430355422e23,1.7233587253285005e9,9.29472947009421e12,23.097205416851622,3.959471389207266e14,2.3263111361778344,56.911606410338976,1.7565882848178254e22,8.462763041108929e14,2.1254508076178715e7,17.491791115815143,50.83858984157246,1.8128977758535323,213931.1469688131,44.350150786159915,747.5159892085123,15.942645244802339,1.0913179221485638,52.482468614586054,40.777148491993074,14.178125695868728,2.4800434336762663e53,4.685989140288202e9,5.144947160467586e70,7.487465976332095e15,6.381457942155277e44,497.32805699404713,1.452472419239978e8,92.32174594380973,1.8791278882208455,3073.704659399621,2.7907713586026594e7,1.4012873723317198e6,8.856094177016255e8,521486.7990917577,29891.42625509221,1.387781871390869e18,2153.3693795013696,49.57911036895559,3.785996395768234e9,1.6152712506965916,18068.58229000418,5.9976328844722905e19,1790.3803163730395,1.593819585776797e6,2.072589969930826,1.9301483185287949,2.833383422740191e8,103.18822441315217,7.352124766688676,3.0920731660589276,26.353765828915037,1.602551468856607,4.98139695473624e55,9445.745380026898,3.7832170059723565e20,2.198521715568796,2.945622523303534e6,9.928653892128864,6.307771222184482e19,313.3741227440574,4073.96131003679,7.993205375318885,1.250871913066074e10,1.78297895914457,133.39589247917442,1.072902462877464,10.990092584553643,361178.0437033903,34237.186108283815,4.148918787197696,56247.67265316527,2.988406273883656e7,1.4494439824845673e11,3.5348973407795214,6.246035846060512e20,98.3039133665195,41.44599581662645,1.050570599653663,1.4252093591813342e12,3.1421937123920477e21,8.746529603837269e13,2.587432790293918e17,2.922689284331419e15,6.635793472910249e33,2056.7142221135396,17499.011692222673,7.691042465604575,1.410141080347419e44,2.9280335043377986e55,1484.8564944790458,2.9260586867452676,2.7064289150166375e14,9.205520431949947e21,4.905248047067234e54,97.30328379985664,2.1416176395883868e32,1.131273189278964e38,1.7936783926003875e24,2.859370557679222e39,86.0538257387524,33296.02271532832,6.941723767822916e10,1.1593287721355952e12,1.4105516956480684,525504.0065670545,1.5112095882108592e16,13.363739149122427,4.317524991420769,8.17742385394807e28,1.3514000802708221e63,1805.5481566596598,2.0738080780062658e8,8.93889472340666e14,11.181739939327656,9.408102425183706,5.16133727283228e34,7.518076998556017e9,2.2026190373644905e15,5.4307307788938655e38,4.730724445646281,1.360509931912269,5.722951847685515,6.590013876551184e14,1.4734009965677044,1.3233109190386448e9,5.749633183826418e33,7.75058367538986e8,1103.9385865920726,5577.143277101957,1.0188467476176265e8,398.73346543398924,99863.19601843719,5.718502380975962e21,1.2717103429599398e36,2.117591252972549e6,1.3955182387069984,3.493547044049923e18,8.62558762743368e12,1.5257531637349382e22,24759.814254784076,1.8072594292802558e15,504.5616126556253,1.431427009286179e12,634.1367820116378,1.4302205947786035e22,6.521181760030922e6,4.383344798274638e6,9.908263161988162e15,1.793053211730001e13,1.2885732084595557e12,2.5157415136568817e11,21.945308921432346,5.048656873041415e18,1.5570818596949416e8,2.5691565939124095,2.101572221326768,1.3363883728211822e38,1.166149868908786e25,5.3589825031522875e13,1.8562340893379536,616076.8115127467,2.561711221022974e19,9.670524109061653e9,3.2688527534672674e53,1.208615718689945e9,45534.93840774418,1.758745836827999e13,1.6165553922249755e19,30807.11722778814,6.371929340613736e23,993658.2249202643,3.4052472005454673e43,6.957867705592893e34,77912.1297047692,783.5253783945775,2.6873102996153287e6,5.513595474082266e12,8.63025452624001,8.768955413297009e17,5.019321399261782e6,3.5616226229871537,37815.37474122232,2.8350856223869485,3.073746822140323,8.890216275672057e8,6.783591701627504e57,2.707235579651469,115.02892951355493,3.5203069808967935e36,184762.83695351152,3.3760778828731584e6,1.7654675586275856e14,4.991126772608066e27,19.2554357089965,3.6091845894020285,6.8744713692146e10,83915.69241671135,32.38427162101529,4.779840086276376e19,152.8260543025263,1.1673597942979928e48,2.1147004566388664e10,1.6564464820038376,34.96201952318775,2.9263311166056547e9,1.3170628433217766,3.3107475959515816e19,475.1733770083521,6.15078324406088,8.404880093052276e19,5.794504936724334e17,1.4806309978227504e62,5.053628329433524e14,2.3057392687551417,7.388299646954962,2.8215401310982643e10,9.403831269861948e14,7.701142919999844e59,45.381588581911984,19.1430078546816,1.8838055163313373e32,2.4252933625303072e17,1.1732298286987885e21,1.2684961103246849e20,177.42875313115633,219084.93376794236,2.5755990162623554e8,399.141460894071,2.7331097857059956e8,6.809460037550921e15,378047.1084051605,186502.88237661376,3.168728856536807e9,36.869506992096824,6230.497691258124,3.7611933936255825e15,32.50887556104255,1.5990923630549512e6,195.9187736722115,3.238512777375823e44,3.3788441247030736,6.021570327775,1.076117995663181e8,9.166314740132428,1.0082713628428923,10.630848215715323,222.9706485189962,3.3975677882235062e13,10.802747228377632,2.5803396666322815e10,3.062528269873076,2.3468968356446835e21,5.0424506167501344e20,3.9244545001283447e27,9.2568392590569,1.235991250816294e11,8070.0451975284095,14.423683341026479,1.110594124597303,1.8565630594430267,5.018089578190249,16680.45895053576,173.42302850854924,32.27649412931431,2.3363552939527242e21,4.4810856803600056e14,2.3350406356796656,3.1115624294350666e27,1.0181021977558444,6.867128058570392e37,1.8772545162608634,609.5383553966744,2.8340039513778717e10,3.54399783570241e16,2.356682688259585e9,2.517175719799239,1.7747838293789566,1.7416594456609775e61,2.0641290949936917e9,89903.71211205257,2.4710313298597267e10,52659.838580366704,4.6207461164366785,1.3732684788045324e7,86789.79201495885,8.614437591083155e15,1.8504491606795989e37,2.6074118098383527e68,1.178402524581507e6,81730.24255648185,149.6865462436411,14212.089515177198,470.04443724555193,1510.2240463579974,1.3266122874398583,5.2009709819265016e13,1.826229484779422e11,140.5771007739018,2.4143460740834775e19,8.978629317835515e17,9.93038119195888e7,3426.835521869339,1.9656604020448685,1.86953620307878e15,2.006350439524104e8,1338.6628123798187,399245.4138832306,7.623593419571815e42,136.56797898241845,67.70331816686183,1827.092039656747,2.3481970403163204,2.1948203674903398e24,2.674268110827145,1.1469041136146889e18,1.6427651847727722e15,30.848806325786725,8860.228687624189,5.9192347894245964e10,138.27275398394517,69.16325002536311,6.863795870434412,144.35691878765374,4.074878759005548,9.326986360830773e6,211.1007880776785,569814.720935069,6.945947420692423,1.2844252059314967e23,6.272970118812626e6,43.35090559399477,7.661842679878561e17,1.5366009524766794e12,19.31133134866362,2.409852566466256e54,1.4564433540029054,1.4986089774206755e27,3.880345549734053e51,8.787909310588982e32,2712.91097135534,1.5413547183253242e15,1.0421801763637346,2.109176516470006e7,7.268657652464839e23,8.807018622443552e24,551.672378118917,1.201464487254654e12,19057.223152034796,1.2971048943568556e57,2.54006753330037e28,1.7494499972329695e35,1.4657648695624044,7.151526569064606e8,139.17787286059246,3.3103543358737565e22,825.4441099291287,6.868983765199424e52,2.94214185710097e6,2.965796963291636e18,2.793854330578735e8,1.1667724755265385,28826.346943057128,1606.618995813582,17.88001865642739,141.78141884567614,4861.189855552911,1.5478508970320502e18,4.114176174551547,2.0013824490713007e11,1.882126300067843e13,5.113843985425762,1.4662211484739025e32,5.126676954018226,4.841220428051873e12,1.419320922270372,8.909908726152138e7,10.919179447006622,1.3887967461249366e29,4.341182249808352e14,45.44831029927419,60435.23542291455,37.8147450593149,4.26842713902388e63,1.4955041536937275,1.9868202449209045e10,7249.409326750112,84.54040755926933,326892.3007777519,3.0422380646025997e30,2.3817741858237833e6,207747.75088740332,6.92719655794823e25,88.22526491161918,2.7531574075311767e22,3574.1336814414344,2.203418501623401e20,9.930549829480026e22,5.870454139630842e6,395.79882216839434,8.53793765947567e9,2.380466827934259e9,6.601669793907335e27,20.78098814392395,14.882909737498164,51.67972168791288,8.636881333258344e13,7187.779830135862,4.1489959336939797e21,8.816487076333633e10,3.186727389773648e8,1.3840317696537732,2.2373911999222424,1.4447483590983116e51,5.440849822438652e33,1.2080119484762036e44,1.3849742143445332,1.4236825273800646e69,10.366566030057797,2251.881945811053,1.0978865062058669e21,8.714844190562029e21,4.097999137306103e32,83161.9705457033,1223.2653527382718,3.604993597879395,2594.3399860470563,1.8006096909425354e30,2.365812242594212e8,3.1479176302552694,6.164571508942848e21,1.3305914455727097e12,5.251607096094141e8,532.2935758657895,3.9261120645490625e38,826821.1730419241,6.653874619830134e27,7.707033551621819e13,656.6195538973051,1.2633296447503825e27,1.2716461782560908e15,3.6206974786551103e39,2.9707548532902634e8,1.405720000495285e6,4.062495013506679e34,2270.418601817818,1.3422292996653338,4.553230504339283e20,1.537968240348896,5.872288072585925e31,11.87461111753685,37.80228301515644,891.1686986056077,2.701088265351706e6,475.42198171014127,417.16555813042896,1.4557933269638375,1.0949390252767255,5.222067143496768e49,9.721402589448653e8,5883.709928022293,11.029249736845655,46662.46622200528,1.4481997296271162e14,6.688357101822292e29,15.019794719907507,2.6329653882389557e10,3.425672953108547e23,1.0625825235781247e11,1.2938031870912724e9,1.4667075165913086,577.102739301177,32.99681230674917,1.4236975399217874e18,2.330612468659495e6,3.843931822721346e18,3300.8407124969967,5.496473637793781e6,1314.8885040853318,2.1731594282919727e11,18010.435233990847,3.399388239589082e12,8.127963524820625e10,7400.550323807886,35.97746665096996,7.685196007216563e12,704126.4979044547,6.7992826447017585,1.1157893186498025,4.051157377372913,1323.8364413824447,2.8825187894038837,43.794066382163635,1.1981608942543324e6,3.2483412713758516e9,2.903715187507443e32,4.0624991022540666e6,8.758353332856382e8,9.11114425582719e40,335.6786174070931,1.7692627148883784e8,4.301343774610551e19,4.348498549019381e8,410.6604130484548,2.1159602099285805e29,623.0113349462823,3.539312663538848,265634.50092583103,1.0774467183856136,1.1000758064939974e17,1.3453869941701632e15,65.97291464736475,5.63718967901631e7,1.863975082851441e16,2.070514309335663,35.36103805427604,1.4071749667289047e20,788.0686732176637,1.7086535427913428e13,2.398123088935383e9,91.80852253975056,2.8477515368530907e7,140.98687429111,1.5656322711715067e21,185927.41121129986,6.618721703938607e37,25.867479697454154,2.4948814605506575,57.972765610637175,7.21925816129788e39,2.2742946528567536e58,3.846390537446653e10,25.08816251500555,48408.74789620526,1.1120376482836654,212964.5222981489,3.608742125555715,3.7549663952928854e40,8.360229223036372e38,6.22350967282982e13,1.0122712829749173e29,5.894168853543185e19,1.2529628948806338e13,19.182700090819864,3.721109544136388e13,9.181701646845331e6,2.8166881977724706e47,3.789234637871912e42,1.6597279061191528,1.417238733605899,3.599317500634201e39,15.720981222064905,6.922872774665796e25,2.321752178780879e8,630.7633948346067,4.350791355214222,1.8449638323784134,41721.728864218465,2124.0660924911795],"x":[1.0513351491425666,2.8321778695270163,0.5586166396933363,2.499350877334357,1.9836217619209846,2.186713269312351,2.775948121381966,2.7019211956445397,0.6136692382972533,1.678007820391955,0.18144396380864625,2.6859451329666726,2.8874892986058365,1.9691855353867278,2.1009297376420344,1.3375163855266214,0.5721550076468398,1.9329754615038346,0.8200918287701022,2.338448928444259,1.2086113745979357,1.452828071365534,0.052137630804230284,2.4576842490630177,2.9916147443455707,0.150844691185557,0.635473344111652,0.17893675636287365,2.936976513464323,1.192011524057285,2.404253499333393,1.7919403286476911,2.0377546183986452,0.5822076679708921,1.1564692847811622,2.908470200059534,2.6013705340586664,1.4007115860953747,0.8654253719620253,1.1616552955440216,2.796435917845524,0.7725266456181428,1.4240308920062088,1.0513650774274164,1.9990081905918224,2.415461578517708,0.49224157471377605,0.19256450111428647,2.518998389623741,1.0279914688627008,1.5666028060743862,2.931689210116568,0.22546496145338302,1.1824434267562474,2.965208947605868,2.123416456201406,1.6780531343747558,1.1910506924456272,1.4316162219298736,0.23834329187554815,0.9784082862822698,1.0995440412747126,0.9976744624946243,1.8951675732468019,2.3028427804739002,2.8508420713174383,2.5286148989480717,1.2751644692729616,1.8964756511823888,0.03494668108559451,2.700146242369887,2.462856467102278,2.4427915460224594,1.6854759064187441,2.253704978333703,1.5603682483147803,0.298541546542177,0.4734968732658189,2.904006344582581,0.5715724736043835,2.3569964946654567,1.0507694614256908,1.6262529506663823,1.1503536617319632,0.7405626539152943,1.8200160175234277,2.6893528065416614,0.26721409402449803,1.219480028474473,2.08837975784322,2.1118015465377695,1.3115196381150909,2.201284606912001,2.1990399395921885,1.1114018152371448,1.376495380071384,0.04301314143449453,2.8837902413386383,1.370916915697834,0.8438660849552131,1.620113220413147,1.342770495136437,0.370834519500318,2.6231085118170188,1.1851490605809465,0.735887963236477,2.2942727061151,1.0013749001006846,0.43133255091390676,2.163057308624408,1.9953402575652242,1.0846261683385259,2.8099828195605534,0.79600826008364,0.14644635069250866,0.26204975739330205,0.43956896570767223,2.5395536905464735,2.029944407618772,0.648787721537244,2.4250843960813935,2.016651367956899,1.4070520980728953,1.3279337654875283,1.3396784748175985,2.8299871226632645,0.4407749849432927,2.500231233182589,0.19132785452364054,0.5320008688643532,0.6804424822089543,2.505434300066387,2.5761537302426,1.0084004124156118,2.4976029525107872,0.44557427039907105,0.4308053406815069,2.2602260402821,2.79622901028804,2.917339641233589,2.0059231580037924,1.1114984255344622,0.5709163469472729,1.7589720170150922,2.6265618753282105,0.5262170903616938,2.7775411880368246,0.2170478076033142,1.0766784027967522,0.15347766881332925,2.918664183668357,1.6422764523361961,0.2861421502894399,2.1639031233899093,1.3687221148145268,1.5202231564923094,2.2933384328879334,0.30228928320382087,2.997955841092165,1.237943256151459,2.208935778813786,1.9195959998808305,2.084017375408555,2.0516321964443125,1.0177567885991323,2.770872188014667,0.32045624669405504,1.5876684306489623,2.5210893232441904,2.1049282538723557,0.9425476275869884,2.0217901720713156,1.8707374706697082,1.3141050031574795,0.051291777352415524,2.2784872027275993,0.2674106850991447,2.2601338775657616,2.0712913898641454,1.4496342884009827,0.17172604675677117,0.9336760429324706,1.4465131953213382,2.8391199250869374,0.29830180009360796,2.3194196926379362,0.0008927955070816562,1.8474013183997051,1.9361230477270042,2.252467522712359,1.5041103623526535,2.28209619211368,0.4160488141889065,1.7707153430292946,0.6482701017789163,2.007503783863109,2.58241638460275,0.12036839921677256,0.8678147518871175,0.1463279132365214,1.5821543927997033,1.8910878149274706,0.7854872674162614,1.6332171665414663,2.519670931245268,0.434201154133417,1.2928132630178022,2.4336589697303666,1.7991623837861905,0.5291235847401339,2.937734880257622,2.4918823262199323,0.2189640373581634,1.6314718398344887,2.8945936046938012,1.9756244353099297,2.247349233652727,2.7746976900475806,0.6296434705666496,0.20376674965124586,0.7917666161628947,2.0228595718552667,2.696398740037587,1.6974493274581257,0.944440607242601,1.1519058070721915,2.96687617738739,0.8461670280325158,1.102870195301847,1.518654655660049,1.4463954292689043,2.547325237776687,2.9329407360222395,1.7462710438551636,2.4285969551495445,1.101376297013495,2.453766763414313,0.3485078255588985,1.48413057513279,1.5734478105912573,2.0150371271047476,1.8644394480320161,1.183509819428404,2.853759921133138,2.8650592000832207,2.8476277224272266,0.8329407373901427,0.8036799855875201,1.9086382155734127,2.904961104665939,2.723117391633511,1.6171125174415637,0.6885556885058441,1.0030312580989147,2.087952097328547,1.9056745228686653,0.7127465649930196,1.3764684359975699,0.059014548350162066,2.566883590220557,1.2352701655131182,0.31971521447631424,2.387259796713723,1.1286147699302724,0.48659814142087177,0.3605347709748503,2.3855017669976784,1.062884910243204,0.9914636449324503,1.9819324864977321,1.4819881680940683,1.6999988951901843,2.0872032239857994,1.7035995092207963,0.9584853745439181,1.739651815282365,0.36605577640542863,1.8031351008901098,2.057755600947581,2.598613236825668,0.7389746906974395,2.095966502549437,2.8281046947621293,0.5649794903795085,1.921988259431993,1.3978855396458052,0.6176024642093092,2.1456673137693993,2.7487626480802456,0.813710409737864,1.3667141219456995,0.2842806743189332,2.440847500402799,2.187841593770985,0.38996871017351187,2.659704554775444,1.1013550061624435,2.441097894734314,0.5718721356553174,2.55989472165917,0.2750080219104596,0.085324133229987,0.37012407500601263,2.3756457933435335,2.1837804465791675,2.358366381643079,1.762862264364807,2.84059319589578,0.9058219358658413,2.9141965265424563,2.7615569796832515,2.923832442232814,1.4867180224022027,1.4668058736953518,0.2637018064902983,1.3351544133147148,1.9376542521112519,1.7200728545747248,1.7564099118380068,1.1056335318314563,2.6544924786890363,1.8935840887073365,2.6380656964054685,0.32133567375752126,0.6731984435855678,1.6825994030219629,2.3127250172370863,2.5808775433364266,2.9763756203190734,1.620778296296319,2.598704620633918,2.3703000073462097,0.3651935570645246,2.553007430809804,0.4062227481909242,2.421113928085709,0.25712521902511387,2.6169392729020093,0.14690372481453662,1.6822089234330637,1.70368978555543,0.6920875057037781,1.0009470537011111,2.8864167515467365,0.035562371817722704,0.42973954505860434,1.4292297218124423,0.20767004745761608,0.31162241922331213,2.4086568380268956,0.3218749841330686,2.2264884733192236,2.6401011735117947,0.10049584679725387,2.2795037819190824,0.34215868532308,0.6889682318444079,0.9267639799332386,0.6596693791326615,1.3877473050327147,2.2594525212563292,0.09615505836501592,1.4207301929314438,0.296692319064916,1.7349392886678692,1.5246597147841248,1.0972957648732418,1.692971271053958,2.2000468602230407,1.7940218786698847,0.28213870985004164,2.970565925090773,1.7561593262564825,1.2786452427541162,0.7843774236047962,0.07518267210310836,2.5588184632966904,1.3770131819907778,1.5061850196042221,0.1214973277053657,2.634603716107979,0.8437848557814511,1.736559527125083,0.22455847620014668,2.6411988638302026,0.4564390431831149,2.6164049124977002,1.5104527127406746,0.9569926033372149,0.4662894124577337,0.6733852156019233,0.10052584843308088,0.45850439689977707,1.294499956532593,0.7136211372324284,1.0066162495967486,0.7631246308580351,1.6341825780448134,2.7872910515486264,1.5340767501023838,2.9161667787942216,0.6748830134199384,1.5082743846975952,0.8903721245729639,2.9897754409924637,2.2549223368232605,2.0348180760703536,0.3699819104663795,1.777172766624941,1.8256297442782405,1.637217666626913,1.429080551867658,0.6653009572222335,0.44677841580897426,2.6678707275091553,0.32469761427647015,1.4221993825179344,1.5557770509396578,1.7869492687470898,1.8625813190000564,1.3342099985820752,1.5962760285786302,1.823733337647866,0.9833334189954019,1.4366175714231662,0.23722142803575164,2.7504916002238735,1.8064506753625118,1.7617020041737521,0.8876354494067682,2.8362452205408286,1.3208551588610637,2.6360067723563265,2.3671129028023055,0.24121107096188932,0.7457591613643553,1.4437932606875201,0.5523094088358123,2.7149752886951335,1.4579349151842638,1.220649842168895,1.9832378256247238,1.2505062311417874,1.3887232283693722,0.3397281155196197,1.8083130035610013,0.12412399811239894,1.1904852697833264,1.933136743945573,2.3604533618847316,1.011391972704878,0.5225328658455908,0.43279759417676034,0.06003667040631022,0.9716006936426536,0.4354052431384894,2.041655064255152,0.6323072299232071,0.1301485497460817,0.8641695213890583,0.4991196630140786,0.7799324194619544,2.9773531696800237,1.2551231089772141,2.925415928050467,2.2409922433814025,2.5490336875867605,1.0039400710814124,1.8474376178447722,0.5514538370576205,0.18708958965923728,1.344950741824857,1.5354286797463206,0.9810801092306995,2.152746586888894,0.9945751098392,0.8197150302092022,2.072210465774269,2.1736711250000407,1.0469070187587588,1.4114991273495092,0.07619336414338074,1.432782435514235,1.9490168164085395,0.5649993994272082,1.8595235854379144,0.5385210130230595,0.3681184491818097,1.3790137483538214,0.8782524720326355,0.2753596639419007,0.5124517009802785,1.5683774482881179,0.17932665836112682,2.932681695508792,1.7950678650870062,2.136696706113608,0.26094246626461937,1.0338268031749975,1.4162538596260497,2.040814946334713,1.242314529797884,0.6768316658605225,0.8006288416320118,2.4529963832565853,0.19467573975943275,0.7550584513544194,0.44360306456964316,0.23670292484361055,1.4741306507711887,0.8598533650371492,0.6138491912453001,1.637417368918142,1.3800922152080635,2.6220317375680393,1.7742887403340055,2.5053257501244173,1.6611090057585098,0.3216788789756637,0.011967814786479014,2.6937099991005216,2.436076778515715,1.9431359993833994,2.932956786930312,2.1841285023803128,2.4800278086726664,0.6798620300822977,1.4155691658388463,0.502240886888802,2.477264536934637,2.684223347828199,1.5722126107766243,0.34238326987302714,1.5191798934767735,2.1998552865394294,2.8599146784389946,0.7139854335815632,2.818927072769627,2.643969763837874,1.912943081884862,2.5394562164818244,0.42723004320335467,0.8812067120713056,1.963595020661989,2.0649159714752017,0.198364176517126,2.2013139648761615,1.7837047208529406,0.40376646338318856,0.22209323390244196,2.780529241634612,2.768863668560149,0.6107322679356069,1.8434929511781026,1.797180392713644,1.248097296179405,2.027308324264311,2.8530814508366014,2.3219865284040955,1.949508779093546,2.923903829649218,0.536297590978797,0.16840904397980117,0.16638638137396544,1.5160654430067753,0.3057861028664157,1.2384357221441589,2.327417430490727,1.347724426407223,0.9022855793686009,1.2789597024050094,1.469136037618207,0.5746075704984042,2.2392464294800973,2.2791473842055963,2.2397565864064495,1.0890887048672022,0.24056241619095653,2.4506584897257477,1.4599174503940895,1.8139732666876929,0.750631857068599,1.7549893467585242,0.5173573082047147,2.4871109647642013,0.5164773171439689,1.8996047162456293,1.5339841905561222,1.6086499410164297,1.871140908662398,1.6034951533230695,2.8265160982239723,2.262290778655972,1.0292023086180766,2.295551725908382,1.0712357416352227,1.034264778290405,0.10491882894281535,2.290093231013146,2.2630004135089985,2.249213315531299,0.17814969028707073,0.9697533169078452,2.1174628369905113,2.584200693471838,2.9373066789223152,1.8759544827697596,0.8556167962861583,2.22965897592326,2.559349662777426,0.7336398017418562,2.313237170393643,1.2174168054105436,2.9538119986304983,2.623539339174572,1.5136909003885208,2.571547952757565,1.0897185396613307,2.3947602378038844,0.7637483846641444,1.6842122296729014,1.659506673584987,0.12131668839131615,2.467628240895735,1.689908549139444,0.6001989172691142,1.7904570564928883,2.93844955581442,0.4651868824813701,0.45642035895923017,2.6799636879813917,2.236218427446922,1.2583683383784428,2.1586687758001397,2.298048125472374,0.5641851793384318,0.3401376421377147,2.0768421075390693,2.2651669599077455,0.5420248258985245,1.7308406858146286,1.1618014964223313,2.6841906281033574,1.6321829805934014,0.06350341229745693,0.3499322623293222,1.6610441649303458,0.6897425527205858,2.2368809138020964,1.2884544247239762,0.5600367500161978,2.713476574898861,1.7961306146336762,2.890963828820266,2.612147540829479,0.11346050214503145,1.7285764813120517,1.3014186108249177,2.2101423098384974,2.8342758648540904,0.6482752986517517,1.3491836249968445,2.6207036251340883,2.049829794208292,1.8033119331023721,2.107002144667942,0.7900535928541774,1.0536138048019874,1.7539840331457113,2.682519078692042,2.7978849933527874,2.4225758722174837,1.6026428869408913,1.9037795882827564,2.2997652559769115,0.7683517157379594,1.5908012646212024,1.8260158546169807,2.4497886284737884,0.9274582881416737,0.7225122857190212,2.5192208176526067,0.7471916274474018,0.7806091368134045,1.4405499305007032,0.7836865935471864,0.000941323478635514,0.5774269154493636,0.8330805111423571,2.266328981634982,0.8772072533772188,1.3183065311464264,0.6950063913051172,2.2312358952229685,1.9496519853259024,2.6807054882216415,0.5261824423193553,1.7325227276772992,2.214768584411944,0.2928770286721798,0.06713899319539052,0.460613923065611,0.6202167418888842,2.4114941072003404,0.5641294861906743,1.3929539892927636,2.8295066041519568,1.616448250762943,0.09173924460580896,2.269206096868111,0.001886691637285276,2.7398487780602743,1.5838980182594244,1.2218756961992707,2.4747237036566005,1.9004436319036073,1.206146702165416,0.7320115587308251,0.09723289932030799,2.908872542666062,2.249682211309983,0.8276958509214314,2.0936993000145336,1.0673082659081363,0.37021570730057074,1.3136949207471629,0.901713613940722,1.876170328222618,2.5619703521358512,2.966403001276017,1.9061484705380245,1.0361125351292724,1.0901006187930853,0.6911640648595105,1.8585649481029423,1.1272696599769851,0.21014222566194385,1.8041413823286796,2.3503956350023847,0.4525183188001216,2.3582883890031434,2.003086646738241,1.4296526686241704,1.6954151220023828,0.48035243183665877,2.2872681729203146,1.7113275333483393,0.6425488837142017,0.9152871021010895,2.504233758510561,0.4232544251558321,0.5981543789243575,1.6477203610059523,0.09488144522090969,1.94786897233404,0.17616054853420904,2.293665536967937,2.500271479361845,0.3464228829351006,0.7170835152406194,1.2710615682159514,0.4665133731357227,0.48255174181850524,0.40606926819586375,1.1935885529569057,0.41264974397268483,1.0337281467004897,0.7077956508779342,2.1654808748665033,0.6500606111617546,2.7303409630906286,1.5007307909158243,1.060699529006435,2.1166758969322794,1.7481489927847265,0.3084722488112197,2.9268927906354927,0.3853059641103844,2.791807898192643,2.827673136095357,2.2113280670598225,1.3082643184062115,2.4788316177483214,0.05120616911049147,1.0464920677130933,1.985380489745358,2.7277432120849756,0.8750080677619707,1.5357126342768788,0.799786151901424,2.7531564727509297,2.6809616998010894,2.8973865737555644,0.1852916320175939,2.145259046257684,0.41777616571355947,2.5273149799118926,0.6290543181763228,2.7086790515001073,1.4625621056366809,2.911121973752861,1.2409625929819428,0.9907930980166646,1.2541936881058817,0.7116676280486167,1.9974476972700315,1.1169940547936124,0.7791813389334621,2.1053924552547336,0.5724729529729715,1.5271156847241112,1.8834999291527177,0.8875206294058364,2.2765407928333303,1.4991819396671415,2.1137506420739856,0.4997878869475938,2.3204390883364114,0.47067205377907606,2.8512934901427798,1.667672827473428,1.5180282022099307,1.289298591540359,0.9304373383316973,2.8683153759068962,0.8186008397092099,1.9187465171872486,1.5853173138938839,0.7060674100834714,1.7739531425935702,2.4346913313447045,2.2776187558763104,0.8629045359287362,2.4427450286604246,0.6003227043651778,2.5365244638717126,2.492374228703839,2.853852805182293,1.9877393363208522,1.3260416617526956,1.2316170906571198,2.2974250661836066,1.810670456294134,2.4779170713820835,1.124507563032437,0.29525442088263243,1.7886879328583003,2.3738780432878532,0.9364749314084675,2.155584956605053,1.5233759194590961,1.991550800005628,0.07835710654969841,0.08387666175293318,2.5837488503742145,2.708072945378026,2.415085250379744,0.1735388242450151,2.875180497608521,0.3230175593331166,1.8851000661482844,2.407958049392343,2.994102080646724,2.988352930473611,2.0469164286944492,0.7528709687160975,1.998967186664395,0.9067400570986375,2.660996182591619,1.7772380012712026,0.1372164040525805,2.094559308095872,1.996386466815856,1.268274660326512,1.0941508368006525,2.392332024605679,1.1903159417564444,2.2102831634465177,2.458479229389627,1.5690881098512708,2.122680164452871,2.9457741752417004,2.3760020971724565,1.4691893601386041,0.9544975228398438,2.918705734409466,1.1975862798453216,0.909559198525576,2.4371709746586747,1.365509310924676,2.9754718973673393,2.3183141300881323,0.7918533795797937,1.1441510598765874,0.9168716864403068,0.930076219082014,0.9880915209208556,0.3875466520763433,0.5958303825283555,2.7602927956156416,2.038078130167078,0.8451409341167824,0.3991870857956241,1.9034021376575825,1.5150803421147354,2.6275060570221447,0.4601759804901109,1.9621067152020948,2.5045946195043456,1.516185860913835,1.2823967320944558,0.17235959142016277,2.1206076977955446,0.3977750767445767,2.4416992723486777,1.2877851495815937,2.7225326283166966,1.8083475495649488,1.7193356400955493,0.7933283099675894,2.1044110264634552,0.8538881140402521,1.4701569330150897,1.6666475213319571,1.5529202784127738,1.1110654169824072,1.8458138292069761,1.3949434027543115,2.682931007407376,0.019071320825298166,1.1537697195368686,1.2555508568747857,0.45404686431659536,1.0200340988537182,0.9295560082685046,1.5060216526920966,2.237706813027205,1.7964108591141366,1.583887382497131,2.627060232414966,0.5773271194563749,1.8889868887968753,1.8639992326539705,1.444162864784638,1.9717059438259241,2.285390045189548,0.9917964237493857,0.26032339030414353,2.7419702121848286,1.3503920922864958,2.063800156731288,1.6607320308013949,1.8258821999541102,1.9175139446583287,1.8371284675782122,0.24032714937136124,1.278629825646804,2.0026139677255417,0.7948510286189727,1.9366770241621136,1.5368514811706524,0.44581765595128453,2.7644284808188586,1.390689255472832,2.036239497571669,1.4410784480282772,2.8996378908103733,0.597918029060394,0.41909773429740826,0.3612643425142681,2.581228377270634,2.9573690028375523,1.4656065150320137,2.7704041281128973,1.025690966956737,0.3940133439566216,0.9561609038726011,0.1894506558363287,2.4597074601269484,2.82488990138744,2.128143230397517,2.121410771294933,2.612389850246913,1.6785768816440174,0.3440390060605649,1.7013081074504508,1.148798583347151,2.9016339449883866,2.8904256288813213,1.3595447401119127,1.0091444926878608,2.551622149018316,1.8150543609917327,2.149739422852794,2.0969609028199026,1.792460854685663,1.3936471862146333,0.7585663775012992,0.9035353890984701,1.0290873234045466],"lambda":[3.912747312170257,4.808368155389999,6.656772271955584,7.712292848130526,9.90851131250741,4.4752414277235975,3.4329427063873763,9.822349399697266,2.1432923063841502,4.154330090647647,0.30481724160120516,4.6415302852266755,0.3766092416344069,2.9517188121330173,9.113613122200881,1.0025519888636425,5.367424862679706,9.856780312897726,4.917436708355387,1.3951267121035449,9.080174147810796,6.2639792224169,7.048949502086681,7.452632240135284,8.891266315038626,1.3592527448095115,1.1847001289185788,6.734692623416785,2.971139726409675,5.499363214145507,4.315157471794198,5.041891723953267,4.261886060126738,0.675820570011394,3.17752426227234,8.171191172410952,4.23172086411848,5.559374521494352,8.75320184239934,7.36269856772555,8.347410111262246,7.1216579228137515,4.004447971823484,7.554905654363471,9.15663245039402,6.757477379096786,3.285661975767713,4.343982228326548,6.2140850393298175,0.5102437224057566,3.560909023423997,4.9380025841612145,8.941288443018573,0.37893014654689416,4.452798879426392,4.036490437399019,7.520569630310052,1.6555956955763107,8.120533038706522,9.018213481899064,8.779566867806231,1.3799982263608457,1.1492227063620186,2.999023836928423,2.7180023949219767,7.12805596689249,8.825617141378885,7.3123440349636715,2.5362163621256673,7.264920836049353,4.725389106851161,1.239225334135352,5.4396176587010885,6.159852772963492,5.888758071468862,0.31952962395826123,1.545231035084802,0.564139555515879,1.9252371136039081,9.386380827402117,3.538227579509552,3.0177350049772023,3.0502405265078036,9.870964212000446,1.7373116617240192,3.314045651222004,3.2504437751159365,1.7215525442813617,3.3482648827135675,3.357491803588031,3.603146869063427,8.998800902883271,1.4033705405607066,5.61454566291451,7.79955125856965,2.6464104768454932,6.0462753660072295,7.6575434252596075,1.6567047530534462,2.148533781633568,8.950409098389976,8.940067210543504,4.896726432149007,6.814749743074686,0.37159698886230164,7.062816611763722,2.99603588748544,2.7329792221544147,4.9299322247893596,5.631392300548843,1.1616256063234576,6.553943868511998,1.8563858163987423,2.701218479513141,4.933169335027419,0.7181264906826557,7.0466851709421485,2.860895972330395,8.925770409006065,8.949619147728892,1.301819013829375,1.1094908885571697,6.584695476353026,8.055859118608787,2.8919472825370285,2.3193993767840038,1.3206802611522783,0.7138521669549558,9.297321604824822,4.542836101594632,3.133120045332105,2.1596077458656238,7.480762937106231,7.367543771176431,4.426564443638233,1.7153330746100859,8.227981460698249,0.32109067236048006,2.746537877481754,1.2232265519992014,3.4090435257791007,2.94179474036917,5.291779221361892,4.38939753819267,1.665157249271132,2.898652482102826,9.019444800591756,4.050017979680353,9.80566508492217,0.09828599345653499,2.41796261652907,9.505419968019226,9.6363209527796,1.862608473913705,8.6428329184214,7.042097598400416,7.377063773465831,2.7702449575405352,0.5105100833405274,2.880583501476195,4.907550985957276,0.2595116724279256,4.706911156637252,5.788945067457116,1.3719159402224368,6.87460298353095,2.1313089613757064,2.1627256673416784,8.541849249906745,2.1241101506180193,6.9004963429920725,3.9136532123175916,4.865058107085131,5.0870287754403325,8.748331138907751,8.08637124739779,2.329203408734808,6.755655037781494,3.5651709548233645,8.427331436079886,5.648350101433309,3.2197993025395566,8.249519520769935,4.851150898489394,4.614177082301416,1.5750573773198728,5.177150064115006,7.779069388601576,4.785830100030215,7.224972828183467,0.7386647208333064,0.8630354494180348,2.6840137567887212,3.4375228873878627,3.595735747714548,1.2027721424550686,2.3161956498075775,1.548926007817657,0.3436916511047938,2.9049542265532757,4.421392628355923,6.901778490249823,8.643658947830312,8.738747096222967,2.6430741777466804,8.171307860281264,4.081168028461799,6.490270159432649,5.440203822398388,6.935703949093193,4.955447371722872,8.323444563303784,4.444551762145936,9.188879818547626,2.2982013166401116,1.3511360844911957,3.3948287848897696,2.5280929203429237,5.955154702236756,9.162211027760955,9.362683818145111,4.282801962302212,6.884858693144029,6.288973296332641,9.709934772427697,7.00100736575161,7.885528125326977,7.466081297109339,1.0023682715449889,9.919056336454162,8.185983471429264,1.910843496210175,1.795316771349036,0.454926261053028,7.70714288638906,8.085358759942412,8.392666369869668,8.986688458658607,9.83158555350278,7.835348668196101,7.6956966365890604,0.3615028020850608,2.96679031827652,1.9743806219934568,8.114150869564734,5.385528773546035,9.502379980067966,6.971611454207691,0.6922503156483684,7.1305531846254855,7.0663898324553,7.766432268258409,9.039189788043217,6.030923188541335,6.547179915507348,2.6461388735726787,7.939317755840907,6.190000277252647,1.0652150043301734,3.807805300992355,5.021505025669432,3.099612482673826,6.416497466264232,2.5865052952433354,1.4753223379784042,4.810870820223776,8.339817645505832,9.069709137086743,0.9504053680757685,2.002571722418458,1.8579954851333769,4.705643897840921,0.4728614476445414,5.273134911063096,8.10321210833348,8.607165389283837,2.2847901061033538,0.6630225215878549,9.764444842458204,4.079115183052493,5.612263656020231,6.727879525373652,5.201073986588556,3.7288047222531495,5.346584604067166,6.948506873670239,2.1321894951887077,5.471738575520851,1.5941258755618293,3.9572835373766146,0.41232256764268893,4.3940848250681945,1.4693570303922598,1.5047090357283754,2.45742849922169,8.183572735484512,4.853080947192041,4.088849413459719,7.131474587144813,4.87808492820367,3.8608396871155826,6.052163893870435,8.48167899346432,1.2372771690153894,9.643893215275963,3.854734218688498,6.472417480167662,7.0320861234373115,3.94586428151245,0.33480068389530215,7.658123420839667,7.1936716772264075,0.20411513849194485,5.241477861962012,5.995643606086675,0.7603964097973082,3.150641809196877,4.832031868865537,1.5690169840897061,8.97015406289414,4.413743349031716,6.645166311068598,2.6090049432022155,1.9291733975167746,1.6316403704908011,2.816939275673449,7.030636651662048,2.8156661283584206,3.2379907089084448,8.177143852877517,3.617549645862277,8.210751513608017,1.2996850223714485,7.586923624400416,5.307973535804886,0.5996625963447055,1.930442947633404,2.8551351337640973,5.391319004213456,9.598181502046918,2.857721624231875,6.794003627975897,5.212221341899205,4.992119858096191,3.2005982750916617,3.5556173623301413,9.643863731261163,0.023558855709051585,6.51014008083542,5.9866262303497315,7.458186060568259,0.6264008117398157,6.576081770240039,1.7021740648970773,5.318625001274457,4.088468006679841,5.111087873187539,4.66111218842901,2.9997055997372812,2.086129663367391,8.568586098276057,5.0308050537846105,6.432991409216326,8.712377108911056,8.748718206087512,3.022521863050305,6.962257319639282,7.886714458976039,1.7269285016895064,3.037692637909011,9.44271057707655,2.1163446445019174,0.09138358537770452,2.0532796455404068,4.594856189163686,9.107872994483696,8.974124612836532,6.706722421887923,5.486343342600513,5.615665922461739,9.232705519297031,0.6906314949429126,0.8639387381274921,8.561073660746683,2.767074689975022,1.4440507155008575,0.7973737487942856,8.600648270750536,4.056539457192758,0.2749388234666683,8.73132641037597,8.392226048837134,7.038052858734256,0.5322556773040787,6.334515627851474,9.291198586525095,7.031333051747037,5.073529209597023,7.542354588612303,6.294841001242517,9.319059441101707,1.3930145466028532,1.2248064720131313,7.431491257941749,1.5054014032752483,3.536697025398108,5.920641156850445,8.367189231598907,6.81182197979224,4.903956237848098,3.977887008793639,5.453154117177792,4.620462023352145,2.8961709035270067,5.419767761399575,5.430318775077081,2.9326575213023465,5.130498549602969,1.4203229323002575,0.21834912875210888,9.063603319179517,5.876421086832064,9.747123109886061,6.682418732282985,4.879827629927391,1.2533658849632423,0.04522088669557611,2.312337388446093,8.13321059758836,7.721539462090128,6.028352317926671,4.808658294333997,9.21720255782243,9.849651228905271,6.792674083532956,9.15246372662616,8.1553995174325,4.868143362874891,4.9490237064936915,6.559631158041201,0.6686503102959551,8.510146990483033,8.533948419920277,9.921320398870005,7.760697336562821,6.59045639880749,6.388527408938247,1.7658672680875154,8.66501508272428,3.5819870700258227,9.644354554835239,4.169837115444317,7.254275567155424,9.614899082090638,7.47389530146121,6.950496108908402,0.9870822024245873,3.139639386069699,0.6286877508734756,2.8844716903713197,5.728859817361416,2.2446834528650728,6.597272420139144,8.87776860700691,9.229065478877772,4.350053738302462,8.746881433212362,3.5912102677784885,3.5171316320335855,6.150360435037796,3.0661134719321614,2.8296849768463583,4.705717420471531,8.488333764767093,2.7077437293967876,7.72753553251412,8.115370625569295,6.017296439469046,0.9851476926597869,2.111377353791364,7.109562013907027,6.056529850646266,3.072375584894882,7.562627323013564,9.862684355115586,2.6346605015401248,1.0214840361072075,1.477701929980546,6.550744412777194,3.2960736545926905,6.29325707157721,1.686401565451543,0.8612096974351791,2.4010662897084556,7.213886250396005,1.8234128649704728,6.341813721885972,2.6422180935824513,8.221539645446105,0.7353239559890912,6.807782833359406,2.3329067706687945,8.590410696642998,1.6941255150958012,2.1885931406042713,2.690739260856614,4.3390667892594115,0.12603630528264853,8.97533315214467,3.8004822750569356,7.661402168724694,1.6788185335318717,2.640718462800249,5.785305651049857,2.0134990570146516,0.2578966666540583,4.257252251218255,1.0757106788431603,9.815449673018596,4.097558973441253,2.0299189790859895,4.746705958077624,5.367725814644954,2.254648751151731,4.517533348918386,7.117588952120942,7.835684591426189,3.132552714254264,3.126906441120141,9.318979728332032,9.358700220263271,1.9131539501998263,2.6295774746088574,9.312606227387514,6.303082455322759,7.650644983043014,4.392833936173646,4.723963820678381,6.704564812182241,9.673718819280307,7.78318762827126,8.358215499819618,7.365337560714247,4.075727035587762,4.034906854898521,1.5677797625335144,1.6389585695570208,7.523280050410439,5.21162556797962,5.881600801056058,4.4008277541707415,9.729520739060307,8.908055837535116,3.600604397183509,6.8407003220825,0.9720474016142844,0.3399606783511899,4.89128121523043,2.472901488695338,5.863409292030079,5.0636575734820966,2.1898752278627476,1.6784352924671841,9.636475042589721,9.600210032106453,1.0835396751603699,8.572075156040952,8.40242264893065,7.185296156274969,4.781934615928691,3.326943441449499,5.511722253956394,7.712566494705371,1.3726694355304625,5.713504151836122,9.907398311723767,7.387933337928665,1.22540280459849,4.029589436756515,9.010684103878868,9.947732570697207,9.046438996677042,7.344292727335069,9.185059271185,2.53840668523319,9.543177481318564,8.976321917774753,4.314609559366021,3.8270987316285354,6.701989586887354,7.686309555482511,1.7552329902970976,3.050644860350926,1.7169768033362387,4.822628560277029,9.829936283350202,0.5204403062018281,6.713819172315301,9.890672040996105,6.702171600886446,3.7277541876697384,3.171981880548913,8.142171491623163,6.113492236496012,1.876514038445869,6.897378499607589,3.7837103445274023,7.928766856325662,3.6759464641561412,3.7082169529473874,9.546508341668607,6.01853706003296,5.805946261034805,5.513883729986306,6.275430108889529,3.178618389758372,0.5513625188825366,7.501658774179438,2.9439602691692413,1.8801902399272374,9.415049686505764,3.624578652138053,9.847981731733498,0.9764722355711242,0.23581707389870088,1.3652557182329184,4.127573189810074,7.444807605553789,1.6814254589113942,8.203788415044208,6.1946495637443295,1.4509460483090564,5.965940793679807,4.282808217910372,7.122206609902277,3.9020262662288885,3.167988237286221,3.5754173744546858,1.3133231671066548,4.833558550212043,9.754497814518263,2.29053808957691,8.110512480084918,5.77754536275906,7.69753819525296,8.48330478489087,5.110905131922465,0.277289060206507,5.37372906587332,2.3461235165637895,2.4197286409466834,3.2580015321588762,8.13739422053844,8.415472443477,2.680988992256037,6.953122983430024,0.4316981068780579,8.997226710750258,4.247536050588698,8.608644369658398,4.182130507066706,1.034215245957102,5.830814631895105,5.915825207439783,9.569380348511503,6.408140831992178,4.302872187970619,6.583102712004816,4.053680610777914,0.4396834816314099,1.2606257700007695,3.5481819771629475,3.238104039387497,2.124978302034539,2.4383619259003453,3.1200102882790737,2.2359077913007885,6.884781845100283,0.32888218838920125,9.348326054914995,4.9808371646218275,8.975357702347011,1.0958277258417182,1.5178777667399812,5.738113617007468,1.8625310916151872,8.74669163317125,3.024843412825622,4.158000728517335,3.6044549532477643,1.694802047897357,8.758862503779579,1.1150905731722527,5.920491999799546,7.9103352789358095,4.673425407552132,3.2137108143509074,5.486755879068282,1.1025365164583678,7.843209993565496,1.5104969238110066,1.057568349641551,1.8770989434017826,0.9577743834393049,6.802506142068787,1.1478863991801647,3.0873165582490447,8.360494398550731,8.826377282609998,7.300158122449201,9.4999017694573,6.014811176587653,0.16257712093855403,2.6791626791738765,2.212410541204568,6.698461384184049,9.220129750915337,0.8553438657097279,5.617854842601853,8.13403345706744,2.52783487776282,8.855694336384603,3.3634424798937412,5.699274145283216,3.4160621770284982,6.04262334349219,7.768190329779346,6.636974599012653,7.174041084035368,8.551444806514215,2.440956024650347,6.220949987882049,2.536519295176829,9.59988589558141,1.1363558672765062,3.50707060404587,1.2085707522066103,6.223445666157894,2.7325034031923368,8.642397562823875,4.662205592660722,6.447200039925041,5.795485345453059,1.8295261486823722,1.0959779176581574,3.9742851749264174,4.214221248332137,7.987639096932249,8.612620296079825,8.78923184723287,9.331202066151615,5.148200376922761,1.7902884786453521,8.576918937726541,9.320037175437248,5.106568031028189,4.666441444656771,3.132109635769693,8.282836623441623,8.66929846777506,9.67157565331194,8.292426332214195,6.830773832646855,3.845549157310302,2.162900775628571,2.7501911673950286,8.859052438820035,5.1989027083970685,1.7169867851791953,2.1166861834702067,3.7110711732825763,4.491224016568567,1.9960527246453141,5.638427605039795,5.915013970889158,8.193561402550431,7.086728373794358,0.7998854905365804,4.087026099829101,7.4680742985834225,9.33288382105476,2.9283406194582318,3.2003671695554714,0.7863521681613417,9.127511097910867,8.746358619529143,4.017085874863757,4.512816145951879,7.631647025459037,8.044635232431787,8.950906640840602,4.80946869322898,4.738199975527689,1.8783629731567486,2.702454842105757,9.517809916926222,4.501269556068596,7.668014466003454,8.684249916800955,4.490389348769311,2.4476425037347482,7.909136323571131,0.09108546476082724,4.099401021414549,7.115853730910866,0.45268190792712604,2.4100765741109043,7.196008536414247,5.808809126707313,1.8306441597963552,7.2186327896428315,5.481235154614907,1.1419438060635678,8.471473783687568,0.4699385489101515,4.0125350615702216,0.5400892598207574,1.99400587073159,3.977109944727182,4.11420943281022,7.838546561748155,1.0711034317385892,4.185675135637474,2.365627026577699,8.822254590479872,0.3175691256511981,4.079610803405522,2.290399893248891,4.324751004756086,2.5944231386708183,6.741082779597402,1.6774407875519026,8.937059161527499,5.664205021916948,5.445309097286797,4.440619348165855,0.7377382925100395,2.8641452714344573,8.406471847277377,5.634433656602525,2.4645577479149794,2.5554787877103236,4.221403848193761,5.867961729348314,1.4595843263683017,7.8616133134767985,0.7919275377139945,3.2949776042539436,5.725526170679453,6.521361685722413,7.024714317542258,3.0946773208148337,3.987309315636627,9.204100708900611,9.618895357517419,5.5483821717348185,9.960304762602041,1.7185737162168047,9.518512706044335,6.133358451845535,1.3816901466664033,4.791462685353009,2.6634780879410846,3.983100603812648,1.6797998858574203,6.330125514298706,0.20094560179444887,5.325085051677032,5.23387398696239,3.924249346997153,7.7969104899263675,7.044943166453194,4.3877512407596875,7.859671759637954,3.1596957321949137,8.941152434886115,5.954820693081522,7.891432031122918,2.992015117626754,1.706114980552349,8.48624193904988,1.9294504593619832,9.331020774318478,5.831196230056985,8.86213167286957,4.5491979277745465,3.3422762312041376,0.1984401260324553,4.556003133571876,0.14753387357395953,3.933055251314852,0.27017453117402557,3.008213499998247,3.1744153274842124,9.863223957710542,4.0165461010850585,3.5783593463250774,0.7933700676057698,0.11134996715308265,7.732770225168572,3.0999846039340317,6.5345961283020015,4.892967427981583,1.8832192936640046,9.185485135029325,5.348874420342005,4.636529665071752,3.9242374814837455,4.821843567935211,7.142174077968013,8.053234384635516,2.0362038593266463,0.8666637650996467,7.15730843528249,3.9837576722378465,5.58592060652177,3.0096053119795463,1.5885025303890732,3.387956474983058,5.931491421882365,3.624498342091931,7.26496680406523,8.613529913229826,5.849764230990218,2.391601048275178,1.7583947635856667,5.563269403143027,4.436849861211289,0.1406538356432252,5.690252850880963,0.6446657536994627,2.8641212903180335,1.8422071640510262,2.1313489440656674,9.127718300452695,6.241927323584074,8.928614798034491,3.02652934619813,5.315282127798239,7.349222915355716,7.444477870430173,3.3836404888409533,8.295848217924746,6.142264535493391,0.9732888213898594,7.647582285457379,3.793800820166864,4.2506621053913545,0.8603308180420433,0.02609153637012085,5.706838974322688,8.17127198148892,0.8043447525635994,3.0750194502664274,7.097506881183662,2.679022874248942,1.3757726017839689,7.239453542191178,5.493389405059559,5.133259517859663,5.917365828312966,8.045520390381514,1.1543149308292988,1.639924722926096,7.3257970231696445,3.7619134448767544,5.072679088630274,3.975156666756565,1.756167121038541,9.330209596735417,7.514523190295883,7.363931037677672,7.318844148215781,0.21532762414751216,6.0297952283460665,0.2198997300058081,7.659963816521794,6.152677711722731,8.730314589367419,5.6511266790063335,4.2925851748870585,9.09547622549564,3.6039075378776553,6.9205214070195,7.193781563086315,6.973185225809917,7.441847633965875,6.350727578796143,5.76677328821563,0.17504497968163113,0.2000343020575679,7.700572053682551,0.5358444847295551,7.846818782887704,2.6973745205630384,1.2883014692822825,0.4853435190493216,0.5395108308530427,7.245572968712182,4.2596845307253055]} \ No newline at end of file +{"expected":[1456.014297282561,2.3725947746357238e33,145.61200550276973,2.6806284197375615e37,9.482645499036066e26,2.3210195377384315e15,2.779026913611268e22,2.1385205766462586e59,6.145931696428056,7.195838142339002e7,1.0625190834698768,3.6309406979685013e27,591.6085292416168,7.994664883255653e7,2.4757512349462007e28,16.72225111148463,63.06027356545577,1.992402070545488e25,517.3025249114247,472393.0953066832,1.8303918171319387e9,8.125673841255609e8,1.4582905872982121,3.6304527867203955e34,1.1214837493215757e73,1.2477078659673353,2.863124991801196,3.7420367883934587,1.1066720371053275e23,300706.1681391346,7.4469815318868e18,8.926991377304607e10,2.2480873220975073e12,1.7055516909573343,1015.2006663384686,3.1228271314102687e61,8.708744657860403e22,2.41803004074589e7,170169.5725686898,1.0456432706702476e7,6.002937986945754e55,4017.320020747161,305391.44958871894,1.2819207602091057e6,2.388199273435116e25,8.30688868846603e29,8.081786475455903,2.5154835220431764,6.445619519560216e30,2.4995601373001626,727289.62522037,1.2179838562655456e38,9.59553365748665,2.3567115057297845,3.801829794683718e35,7.973569206010873e12,1.676641663478209e14,44.35399382159306,1.7146068556604984e11,11.327181847028463,2.1393228176520453e6,15.86088001654156,7.152286968109648,2.310295210810735e7,4.234119849348454e10,2.9293383704937026e50,1.648268291056391e44,1.552669069739535e8,1.7254557272238533e6,1.294821982001551,3.080321321465162e28,601490.2810028295,6.565022910741882e24,5.721476134311033e11,6.267143550289238e21,3.3254825610754413,1.7118468187404554,1.4072568744566873,2.6341803970547328e14,1390.4281284271692,4.88610542595824e14,273.8380609226381,257707.34590795872,1.80616584820608e9,6.726338332228595,2.778766087600674e7,2.3488908826231833e19,1.694429546188564,2942.577826392082,2.0498113041214294e10,2.3201490112663e11,3.9637386181510635e10,79090.50406673644,3.522122386739488e19,8.0427537439321745e6,2530.088311846699,1.3044005149441633,1.38997154582794e56,130.1893877132508,17.24525206700316,5.715381139574692e15,9.69209182463869e10,9.01015643621768,6.596552516357442e37,2.325561613042191,2163.851905745897,4.00633587030413e11,110.63646135495908,14.278412018307128,6.700435102712295e18,1606.459808881306,375047.92659904616,3.8438709405848066e12,26.74920096741175,2.1771660211030723,1.2400409220822708,48.91277654692667,3.196146852135888e14,4.337989264035364e25,3543.85996864334,668559.0163512095,1375.0588610785012,6.591975885185881e8,5.040757118956631e9,3459.8298809442113,1.1526046479739696e16,2.078277315492006,2935.5752147090616,7.1021638171347625,24.30283552354175,21.200249176565976,3.55129401887639e10,2.8981949019419655e39,372674.5343690353,2.7638742233535244e21,2.6194516360778484,83.99316437985607,15.746930938155918,2.2317286925254492e18,1.9609822048510916e9,3.343269777130014e9,402.6430695204589,58.796249152676715,1.4538590858103862e9,1.8856908268856182e9,7.443697433903891,1.168382216413019e59,2.66909248505117,1.7374962591398412e8,1.0164374857872813,2.4788583870713897e18,1.5909997172865373e17,24.345246908307317,1.709118472237585e6,9.978754441120044e10,8.476465381899329e10,3.463235846630005e28,2.6585079385148025,16687.578447098767,1156.4930444143838,1.8903498123049968e17,4.5262405031118895,2.4227080832320294e14,1.114624536383613e17,11.29261787797065,5.036214734867071e44,2.236954207844221,4528.017281664724,2.796825387562547e42,4.445620307174975e6,49498.995338142384,1.3677431043733757e11,4.037930905030342e11,1.0288332281867679e6,1.584746584544996,5.896949680132622e30,2.0423069471272184,1.5348460212341943e25,5.467584754297361e10,8.651866770484587e11,2.88127402611235,144.1516026242259,4.3417530978632745e11,8.344986172699094e33,4.97160264034997,1.8727443175040009e6,1.0046349083552364,1.1269077685368454e18,2.1333273792541113e12,5.082496305925955e26,13.269074498421318,1982.8525096198493,3.9942002925445497,1.8965110340516873e7,26.579441245038844,2325.099907789118,2.0014832711532515e12,1.2191168261851693,1.607819551821407,1.5805141814662984,2.644475858812385e7,7.330184764036643e16,30212.018686219813,4.339105874004928e15,1.2998053052022656e13,85.02795029391125,48368.90919301075,2.0693136878607566e29,8.290579792897668e11,126.12393575322514,2.9174674304782606e38,1.1660968262288403e40,2.9682314815096635,2.554173202333701e16,1.1057156352504928e17,4411.940435376224,2.9985316354591147e12,3.2072985203306504e16,185.36390708968037,7.930935786764854,81104.78393632142,1.5900788094092407e12,2.1940206735920416e41,1.5186446344359556e12,4.230981500083172e6,3.8045300942062507e6,1.3182381211430003e63,20642.06224001862,7.5200125919086975,2.301021870061129e15,3.5176753850185657e11,5.887852474573305e9,7.33109707058408e13,8.612801891176108,4.165133803815001e34,1.1272247142407037e7,5.65909119888073e38,42.394320932199086,3.6715406333200106e14,1.0231482411698168e13,5.341369226999126e21,7.178053452327908,830.6450483087995,1.0519727637665942e14,2.0959546747447555e58,9.99477968339408e37,231835.8678028805,5438.16828534474,53.31489572481991,2.911482783182847e53,4.606417969646453e43,4.1840969320780164e13,7757.173622543783,33276.10334915529,1.2538525990258483e20,3.7841969176063766e6,3841.426407274165,9.113953883201882e7,1.0668977490510263,7.693585012655014e19,208771.42236415134,3.214701393440767,3.485067219234342e27,223.48468098767626,2.521091221395146,8.07183118345522,5.3535465818159654e35,2.904822662836267e7,5.0083409877485,276397.8725553558,555.7516225000509,1.3902852584952323e9,28.205189314518165,1.954166598801924e10,454925.26197691343,3.5601185548834355e17,2.7454877060703566,28.807183466128013,9.05174855935235e28,1.1140951707895202e22,463.41574270167655,6.960615311552281e20,8.812397009685292e35,16.97425736464117,3.5297334346244984e13,1.5625118598297653e9,6.183632544955799,8.630754489635514e17,1.3304423962325693e10,144.22771380704802,3.3367200674212416,4.241007047900173,4.891107198719988e6,148925.07744188205,3.228548416235621,1.742096292921586e47,17088.28799872012,4.1690451800170634e18,245.30623160134087,1.9206435306264422e25,3.3943591033473925,1.7144054058469425,44.659404609098516,175132.67288952917,1.0067855551654878e33,1.0645676422161322e16,3.7521605992469195e13,1.7721608292844082e49,335.64833249964823,342.71990990510903,2.015548135921338e49,1.0578455390039915e55,2.0109267473239276,3.912387171338561e7,6.105105021187542,8.411106856984736,1.352344893409451e8,4.1840841159345207e9,1841.0913047152385,7.476929721573637e7,2.1710481571289207e25,1.9313387840627316e16,5.179302782493277e14,2.077355582205567,4.7931463787241935,227941.82406446149,6.187061236992349e27,8.49519057942453e14,1.5115445178331118e26,2.5566118010564644e14,3.5823635168998728e19,3.901417311534572e34,1.7733880579372403,1.0740509530279235e39,14.296594383455272,469.45610653287946,1.7612424250223668,5.493608787238008e15,2.346994363566395,1.766060320388553e18,378178.7344897626,879.7276621164405,7859.58984716181,5.0444393361001876e36,1.1228487040747421,6.745386188912996,1.9943263055892145e13,1.0054523589830942,10.808802266052917,2.0371606715572137e26,16.978788473247594,177.4382254879419,1.4763404943725105e37,1.19716016633537,1.826449285483941e20,5.301704272874697,158.92923795245935,1229.4867324038244,16.480588889572445,528.7532726677629,8.329950604358595e31,1.6615616984342716,5.92884008873352e8,20.272518851816052,5.47491176900147e17,52139.320140276344,1.0849395182959838e6,1.5582955124103632e15,1.0448197058613689e6,4.1133358394152545e6,21.7142947170976,1.0147886420891026e17,1.549204662843581,204.7171996442499,238.0947388366059,2.0363366887120793,2.879212627567348e46,4.270168230421276e8,2.3016125109063303e8,2.0656963279099054,7.530394064241854e51,2.497251711032537,56.90091967715496,8.631520933936503,4.555086232133444e15,2.3055086234985707,24731.354666047126,1.5161803919335531e13,669.2090461744502,1.1774280403491069,4401.134451533944,2.429041082159789,59.98424041944885,4.096103616934819,732.5813262181127,1.0145616959982958e7,3135.8366655074224,1.2292394711732535e9,8.133562945129218e49,8.770008818063684e9,5.084921752126868e70,3.828954965372287,74.44074976216965,43126.32665598274,2.20955288307584e12,1.2846949329818906e13,1.2628986562262682e17,42.35392603948613,3.4249041873006094e14,1.2275309666308238e11,1.4243592269597871e7,3.303224180005095e7,78.78218760348318,5.1106162961225,3.6506730858823577e31,8.029614520754656,10166.09858132508,2.1405434944599214e8,1165.2848769953193,3.2801641876973466,1.0226714973830853e11,1.100366643389685e10,9.790998475325049e21,71829.04273620166,6.242508832885144e6,1.3987141713808562,1.9396365844247725,128929.06889818139,1.0802029202278035e17,62131.11772289577,1.05785937905062e42,544474.3524950616,7.379802384417673e51,2.2393396923377872e41,6.378744083450778,25369.59340802383,2.910842673667677e11,36.20109927500245,2.0640077525192732e30,2.47030126384519e9,4.941485963823498,1.443536430355422e23,1.7233587253285005e9,9.29472947009421e12,23.097205416851622,3.959471389207266e14,2.3263111361778344,56.911606410338976,1.7565882848178254e22,8.462763041108929e14,2.1254508076178715e7,17.491791115815143,50.83858984157246,1.8128977758535323,213931.1469688131,44.350150786159915,747.5159892085123,15.942645244802339,1.0913179221485638,52.482468614586054,40.777148491993074,14.178125695868728,2.4800434336762663e53,4.685989140288202e9,5.144947160467586e70,7.487465976332095e15,6.381457942155277e44,497.32805699404713,1.452472419239978e8,92.32174594380973,1.8791278882208455,3073.704659399621,2.7907713586026594e7,1.4012873723317198e6,8.856094177016255e8,521486.7990917577,29891.42625509221,1.387781871390869e18,2153.3693795013696,49.57911036895559,3.785996395768234e9,1.6152712506965916,18068.58229000418,5.9976328844722905e19,1790.3803163730395,1.593819585776797e6,2.072589969930826,1.9301483185287949,2.833383422740191e8,103.18822441315217,7.352124766688676,3.0920731660589276,26.353765828915037,1.602551468856607,4.98139695473624e55,9445.745380026898,3.7832170059723565e20,2.198521715568796,2.945622523303534e6,9.928653892128864,6.307771222184482e19,313.3741227440574,4073.96131003679,7.993205375318885,1.250871913066074e10,1.78297895914457,133.39589247917442,1.072902462877464,10.990092584553643,361178.0437033903,34237.186108283815,4.148918787197696,56247.67265316527,2.988406273883656e7,1.4494439824845673e11,3.5348973407795214,6.246035846060512e20,98.3039133665195,41.44599581662645,1.050570599653663,1.4252093591813342e12,3.1421937123920477e21,8.746529603837269e13,2.587432790293918e17,2.922689284331419e15,6.635793472910249e33,2056.7142221135396,17499.011692222673,7.691042465604575,1.410141080347419e44,2.9280335043377986e55,1484.8564944790458,2.9260586867452676,2.7064289150166375e14,9.205520431949947e21,4.905248047067234e54,97.30328379985664,2.1416176395883868e32,1.131273189278964e38,1.7936783926003875e24,2.859370557679222e39,86.0538257387524,33296.02271532832,6.941723767822916e10,1.1593287721355952e12,1.4105516956480684,525504.0065670545,1.5112095882108592e16,13.363739149122427,4.317524991420769,8.17742385394807e28,1.3514000802708221e63,1805.5481566596598,2.0738080780062658e8,8.93889472340666e14,11.181739939327656,9.408102425183706,5.16133727283228e34,7.518076998556017e9,2.2026190373644905e15,5.4307307788938655e38,4.730724445646281,1.360509931912269,5.722951847685515,6.590013876551184e14,1.4734009965677044,1.3233109190386448e9,5.749633183826418e33,7.75058367538986e8,1103.9385865920726,5577.143277101957,1.0188467476176265e8,398.73346543398924,99863.19601843719,5.718502380975962e21,1.2717103429599398e36,2.117591252972549e6,1.3955182387069984,3.493547044049923e18,8.62558762743368e12,1.5257531637349382e22,24759.814254784076,1.8072594292802558e15,504.5616126556253,1.431427009286179e12,634.1367820116378,1.4302205947786035e22,6.521181760030922e6,4.383344798274638e6,9.908263161988162e15,1.793053211730001e13,1.2885732084595557e12,2.5157415136568817e11,21.945308921432346,5.048656873041415e18,1.5570818596949416e8,2.5691565939124095,2.101572221326768,1.3363883728211822e38,1.166149868908786e25,5.3589825031522875e13,1.8562340893379536,616076.8115127467,2.561711221022974e19,9.670524109061653e9,3.2688527534672674e53,1.208615718689945e9,45534.93840774418,1.758745836827999e13,1.6165553922249755e19,30807.11722778814,6.371929340613736e23,993658.2249202643,3.4052472005454673e43,6.957867705592893e34,77912.1297047692,783.5253783945775,2.6873102996153287e6,5.513595474082266e12,8.63025452624001,8.768955413297009e17,5.019321399261782e6,3.5616226229871537,37815.37474122232,2.8350856223869485,3.073746822140323,8.890216275672057e8,6.783591701627504e57,2.707235579651469,115.02892951355493,3.5203069808967935e36,184762.83695351152,3.3760778828731584e6,1.7654675586275856e14,4.991126772608066e27,19.2554357089965,3.6091845894020285,6.8744713692146e10,83915.69241671135,32.38427162101529,4.779840086276376e19,152.8260543025263,1.1673597942979928e48,2.1147004566388664e10,1.6564464820038376,34.96201952318775,2.9263311166056547e9,1.3170628433217766,3.3107475959515816e19,475.1733770083521,6.15078324406088,8.404880093052276e19,5.794504936724334e17,1.4806309978227504e62,5.053628329433524e14,2.3057392687551417,7.388299646954962,2.8215401310982643e10,9.403831269861948e14,7.701142919999844e59,45.381588581911984,19.1430078546816,1.8838055163313373e32,2.4252933625303072e17,1.1732298286987885e21,1.2684961103246849e20,177.42875313115633,219084.93376794236,2.5755990162623554e8,399.141460894071,2.7331097857059956e8,6.809460037550921e15,378047.1084051605,186502.88237661376,3.168728856536807e9,36.869506992096824,6230.497691258124,3.7611933936255825e15,32.50887556104255,1.5990923630549512e6,195.9187736722115,3.238512777375823e44,3.3788441247030736,6.021570327775,1.076117995663181e8,9.166314740132428,1.0082713628428923,10.630848215715323,222.9706485189962,3.3975677882235062e13,10.802747228377632,2.5803396666322815e10,3.062528269873076,2.3468968356446835e21,5.0424506167501344e20,3.9244545001283447e27,9.2568392590569,1.235991250816294e11,8070.0451975284095,14.423683341026479,1.110594124597303,1.8565630594430267,5.018089578190249,16680.45895053576,173.42302850854924,32.27649412931431,2.3363552939527242e21,4.4810856803600056e14,2.3350406356796656,3.1115624294350666e27,1.0181021977558444,6.867128058570392e37,1.8772545162608634,609.5383553966744,2.8340039513778717e10,3.54399783570241e16,2.356682688259585e9,2.517175719799239,1.7747838293789566,1.7416594456609775e61,2.0641290949936917e9,89903.71211205257,2.4710313298597267e10,52659.838580366704,4.6207461164366785,1.3732684788045324e7,86789.79201495885,8.614437591083155e15,1.8504491606795989e37,2.6074118098383527e68,1.178402524581507e6,81730.24255648185,149.6865462436411,14212.089515177198,470.04443724555193,1510.2240463579974,1.3266122874398583,5.2009709819265016e13,1.826229484779422e11,140.5771007739018,2.4143460740834775e19,8.978629317835515e17,9.93038119195888e7,3426.835521869339,1.9656604020448685,1.86953620307878e15,2.006350439524104e8,1338.6628123798187,399245.4138832306,7.623593419571815e42,136.56797898241845,67.70331816686183,1827.092039656747,2.3481970403163204,2.1948203674903398e24,2.674268110827145,1.1469041136146889e18,1.6427651847727722e15,30.848806325786725,8860.228687624189,5.9192347894245964e10,138.27275398394517,69.16325002536311,6.863795870434412,144.35691878765374,4.074878759005548,9.326986360830773e6,211.1007880776785,569814.720935069,6.945947420692423,1.2844252059314967e23,6.272970118812626e6,43.35090559399477,7.661842679878561e17,1.5366009524766794e12,19.31133134866362,2.409852566466256e54,1.4564433540029054,1.4986089774206755e27,3.880345549734053e51,8.787909310588982e32,2712.91097135534,1.5413547183253242e15,1.0421801763637346,2.109176516470006e7,7.268657652464839e23,8.807018622443552e24,551.672378118917,1.201464487254654e12,19057.223152034796,1.2971048943568556e57,2.54006753330037e28,1.7494499972329695e35,1.4657648695624044,7.151526569064606e8,139.17787286059246,3.3103543358737565e22,825.4441099291287,6.868983765199424e52,2.94214185710097e6,2.965796963291636e18,2.793854330578735e8,1.1667724755265385,28826.346943057128,1606.618995813582,17.88001865642739,141.78141884567614,4861.189855552911,1.5478508970320502e18,4.114176174551547,2.0013824490713007e11,1.882126300067843e13,5.113843985425762,1.4662211484739025e32,5.126676954018226,4.841220428051873e12,1.419320922270372,8.909908726152138e7,10.919179447006622,1.3887967461249366e29,4.341182249808352e14,45.44831029927419,60435.23542291455,37.8147450593149,4.26842713902388e63,1.4955041536937275,1.9868202449209045e10,7249.409326750112,84.54040755926933,326892.3007777519,3.0422380646025997e30,2.3817741858237833e6,207747.75088740332,6.92719655794823e25,88.22526491161918,2.7531574075311767e22,3574.1336814414344,2.203418501623401e20,9.930549829480026e22,5.870454139630842e6,395.79882216839434,8.53793765947567e9,2.380466827934259e9,6.601669793907335e27,20.78098814392395,14.882909737498164,51.67972168791288,8.636881333258344e13,7187.779830135862,4.1489959336939797e21,8.816487076333633e10,3.186727389773648e8,1.3840317696537732,2.2373911999222424,1.4447483590983116e51,5.440849822438652e33,1.2080119484762036e44,1.3849742143445332,1.4236825273800646e69,10.366566030057797,2251.881945811053,1.0978865062058669e21,8.714844190562029e21,4.097999137306103e32,83161.9705457033,1223.2653527382718,3.604993597879395,2594.3399860470563,1.8006096909425354e30,2.365812242594212e8,3.1479176302552694,6.164571508942848e21,1.3305914455727097e12,5.251607096094141e8,532.2935758657895,3.9261120645490625e38,826821.1730419241,6.653874619830134e27,7.707033551621819e13,656.6195538973051,1.2633296447503825e27,1.2716461782560908e15,3.6206974786551103e39,2.9707548532902634e8,1.405720000495285e6,4.062495013506679e34,2270.418601817818,1.3422292996653338,4.553230504339283e20,1.537968240348896,5.872288072585925e31,11.87461111753685,37.80228301515644,891.1686986056077,2.701088265351706e6,475.42198171014127,417.16555813042896,1.4557933269638375,1.0949390252767255,5.222067143496768e49,9.721402589448653e8,5883.709928022293,11.029249736845655,46662.46622200528,1.4481997296271162e14,6.688357101822292e29,15.019794719907507,2.6329653882389557e10,3.425672953108547e23,1.0625825235781247e11,1.2938031870912724e9,1.4667075165913086,577.102739301177,32.99681230674917,1.4236975399217874e18,2.330612468659495e6,3.843931822721346e18,3300.8407124969967,5.496473637793781e6,1314.8885040853318,2.1731594282919727e11,18010.435233990847,3.399388239589082e12,8.127963524820625e10,7400.550323807886,35.97746665096996,7.685196007216563e12,704126.4979044547,6.7992826447017585,1.1157893186498025,4.051157377372913,1323.8364413824447,2.8825187894038837,43.794066382163635,1.1981608942543324e6,3.2483412713758516e9,2.903715187507443e32,4.0624991022540666e6,8.758353332856382e8,9.11114425582719e40,335.6786174070931,1.7692627148883784e8,4.301343774610551e19,4.348498549019381e8,410.6604130484548,2.1159602099285805e29,623.0113349462823,3.539312663538848,265634.50092583103,1.0774467183856136,1.1000758064939974e17,1.3453869941701632e15,65.97291464736475,5.63718967901631e7,1.863975082851441e16,2.070514309335663,35.36103805427604,1.4071749667289047e20,788.0686732176637,1.7086535427913428e13,2.398123088935383e9,91.80852253975056,2.8477515368530907e7,140.98687429111,1.5656322711715067e21,185927.41121129986,6.618721703938607e37,25.867479697454154,2.4948814605506575,57.972765610637175,7.21925816129788e39,2.2742946528567536e58,3.846390537446653e10,25.08816251500555,48408.74789620526,1.1120376482836654,212964.5222981489,3.608742125555715,3.7549663952928854e40,8.360229223036372e38,6.22350967282982e13,1.0122712829749173e29,5.894168853543185e19,1.2529628948806338e13,19.182700090819864,3.721109544136388e13,9.181701646845331e6,2.8166881977724706e47,3.789234637871912e42,1.6597279061191528,1.417238733605899,3.599317500634201e39,15.720981222064905,6.922872774665796e25,2.321752178780879e8,630.7633948346067,4.350791355214222,1.8449638323784134,41721.728864218465,2124.0660924911795],"x":[1.0513351491425666,2.8321778695270163,0.5586166396933363,2.499350877334357,1.9836217619209846,2.186713269312351,2.775948121381966,2.7019211956445397,0.6136692382972533,1.678007820391955,0.18144396380864625,2.6859451329666726,2.8874892986058365,1.9691855353867278,2.1009297376420344,1.3375163855266214,0.5721550076468398,1.9329754615038346,0.8200918287701022,2.338448928444259,1.2086113745979357,1.452828071365534,0.052137630804230284,2.4576842490630177,2.9916147443455707,0.150844691185557,0.635473344111652,0.17893675636287365,2.936976513464323,1.192011524057285,2.404253499333393,1.7919403286476911,2.0377546183986452,0.5822076679708921,1.1564692847811622,2.908470200059534,2.6013705340586664,1.4007115860953747,0.8654253719620253,1.1616552955440216,2.796435917845524,0.7725266456181428,1.4240308920062088,1.0513650774274164,1.9990081905918224,2.415461578517708,0.49224157471377605,0.19256450111428647,2.518998389623741,1.0279914688627008,1.5666028060743862,2.931689210116568,0.22546496145338302,1.1824434267562474,2.965208947605868,2.123416456201406,1.6780531343747558,1.1910506924456272,1.4316162219298736,0.23834329187554815,0.9784082862822698,1.0995440412747126,0.9976744624946243,1.8951675732468019,2.3028427804739002,2.8508420713174383,2.5286148989480717,1.2751644692729616,1.8964756511823888,0.03494668108559451,2.700146242369887,2.462856467102278,2.4427915460224594,1.6854759064187441,2.253704978333703,1.5603682483147803,0.298541546542177,0.4734968732658189,2.904006344582581,0.5715724736043835,2.3569964946654567,1.0507694614256908,1.6262529506663823,1.1503536617319632,0.7405626539152943,1.8200160175234277,2.6893528065416614,0.26721409402449803,1.219480028474473,2.08837975784322,2.1118015465377695,1.3115196381150909,2.201284606912001,2.1990399395921885,1.1114018152371448,1.376495380071384,0.04301314143449453,2.8837902413386383,1.370916915697834,0.8438660849552131,1.620113220413147,1.342770495136437,0.370834519500318,2.6231085118170188,1.1851490605809465,0.735887963236477,2.2942727061151,1.0013749001006846,0.43133255091390676,2.163057308624408,1.9953402575652242,1.0846261683385259,2.8099828195605534,0.79600826008364,0.14644635069250866,0.26204975739330205,0.43956896570767223,2.5395536905464735,2.029944407618772,0.648787721537244,2.4250843960813935,2.016651367956899,1.4070520980728953,1.3279337654875283,1.3396784748175985,2.8299871226632645,0.4407749849432927,2.500231233182589,0.19132785452364054,0.5320008688643532,0.6804424822089543,2.505434300066387,2.5761537302426,1.0084004124156118,2.4976029525107872,0.44557427039907105,0.4308053406815069,2.2602260402821,2.79622901028804,2.917339641233589,2.0059231580037924,1.1114984255344622,0.5709163469472729,1.7589720170150922,2.6265618753282105,0.5262170903616938,2.7775411880368246,0.2170478076033142,1.0766784027967522,0.15347766881332925,2.918664183668357,1.6422764523361961,0.2861421502894399,2.1639031233899093,1.3687221148145268,1.5202231564923094,2.2933384328879334,0.30228928320382087,2.997955841092165,1.237943256151459,2.208935778813786,1.9195959998808305,2.084017375408555,2.0516321964443125,1.0177567885991323,2.770872188014667,0.32045624669405504,1.5876684306489623,2.5210893232441904,2.1049282538723557,0.9425476275869884,2.0217901720713156,1.8707374706697082,1.3141050031574795,0.051291777352415524,2.2784872027275993,0.2674106850991447,2.2601338775657616,2.0712913898641454,1.4496342884009827,0.17172604675677117,0.9336760429324706,1.4465131953213382,2.8391199250869374,0.29830180009360796,2.3194196926379362,0.0008927955070816562,1.8474013183997051,1.9361230477270042,2.252467522712359,1.5041103623526535,2.28209619211368,0.4160488141889065,1.7707153430292946,0.6482701017789163,2.007503783863109,2.58241638460275,0.12036839921677256,0.8678147518871175,0.1463279132365214,1.5821543927997033,1.8910878149274706,0.7854872674162614,1.6332171665414663,2.519670931245268,0.434201154133417,1.2928132630178022,2.4336589697303666,1.7991623837861905,0.5291235847401339,2.937734880257622,2.4918823262199323,0.2189640373581634,1.6314718398344887,2.8945936046938012,1.9756244353099297,2.247349233652727,2.7746976900475806,0.6296434705666496,0.20376674965124586,0.7917666161628947,2.0228595718552667,2.696398740037587,1.6974493274581257,0.944440607242601,1.1519058070721915,2.96687617738739,0.8461670280325158,1.102870195301847,1.518654655660049,1.4463954292689043,2.547325237776687,2.9329407360222395,1.7462710438551636,2.4285969551495445,1.101376297013495,2.453766763414313,0.3485078255588985,1.48413057513279,1.5734478105912573,2.0150371271047476,1.8644394480320161,1.183509819428404,2.853759921133138,2.8650592000832207,2.8476277224272266,0.8329407373901427,0.8036799855875201,1.9086382155734127,2.904961104665939,2.723117391633511,1.6171125174415637,0.6885556885058441,1.0030312580989147,2.087952097328547,1.9056745228686653,0.7127465649930196,1.3764684359975699,0.059014548350162066,2.566883590220557,1.2352701655131182,0.31971521447631424,2.387259796713723,1.1286147699302724,0.48659814142087177,0.3605347709748503,2.3855017669976784,1.062884910243204,0.9914636449324503,1.9819324864977321,1.4819881680940683,1.6999988951901843,2.0872032239857994,1.7035995092207963,0.9584853745439181,1.739651815282365,0.36605577640542863,1.8031351008901098,2.057755600947581,2.598613236825668,0.7389746906974395,2.095966502549437,2.8281046947621293,0.5649794903795085,1.921988259431993,1.3978855396458052,0.6176024642093092,2.1456673137693993,2.7487626480802456,0.813710409737864,1.3667141219456995,0.2842806743189332,2.440847500402799,2.187841593770985,0.38996871017351187,2.659704554775444,1.1013550061624435,2.441097894734314,0.5718721356553174,2.55989472165917,0.2750080219104596,0.085324133229987,0.37012407500601263,2.3756457933435335,2.1837804465791675,2.358366381643079,1.762862264364807,2.84059319589578,0.9058219358658413,2.9141965265424563,2.7615569796832515,2.923832442232814,1.4867180224022027,1.4668058736953518,0.2637018064902983,1.3351544133147148,1.9376542521112519,1.7200728545747248,1.7564099118380068,1.1056335318314563,2.6544924786890363,1.8935840887073365,2.6380656964054685,0.32133567375752126,0.6731984435855678,1.6825994030219629,2.3127250172370863,2.5808775433364266,2.9763756203190734,1.620778296296319,2.598704620633918,2.3703000073462097,0.3651935570645246,2.553007430809804,0.4062227481909242,2.421113928085709,0.25712521902511387,2.6169392729020093,0.14690372481453662,1.6822089234330637,1.70368978555543,0.6920875057037781,1.0009470537011111,2.8864167515467365,0.035562371817722704,0.42973954505860434,1.4292297218124423,0.20767004745761608,0.31162241922331213,2.4086568380268956,0.3218749841330686,2.2264884733192236,2.6401011735117947,0.10049584679725387,2.2795037819190824,0.34215868532308,0.6889682318444079,0.9267639799332386,0.6596693791326615,1.3877473050327147,2.2594525212563292,0.09615505836501592,1.4207301929314438,0.296692319064916,1.7349392886678692,1.5246597147841248,1.0972957648732418,1.692971271053958,2.2000468602230407,1.7940218786698847,0.28213870985004164,2.970565925090773,1.7561593262564825,1.2786452427541162,0.7843774236047962,0.07518267210310836,2.5588184632966904,1.3770131819907778,1.5061850196042221,0.1214973277053657,2.634603716107979,0.8437848557814511,1.736559527125083,0.22455847620014668,2.6411988638302026,0.4564390431831149,2.6164049124977002,1.5104527127406746,0.9569926033372149,0.4662894124577337,0.6733852156019233,0.10052584843308088,0.45850439689977707,1.294499956532593,0.7136211372324284,1.0066162495967486,0.7631246308580351,1.6341825780448134,2.7872910515486264,1.5340767501023838,2.9161667787942216,0.6748830134199384,1.5082743846975952,0.8903721245729639,2.9897754409924637,2.2549223368232605,2.0348180760703536,0.3699819104663795,1.777172766624941,1.8256297442782405,1.637217666626913,1.429080551867658,0.6653009572222335,0.44677841580897426,2.6678707275091553,0.32469761427647015,1.4221993825179344,1.5557770509396578,1.7869492687470898,1.8625813190000564,1.3342099985820752,1.5962760285786302,1.823733337647866,0.9833334189954019,1.4366175714231662,0.23722142803575164,2.7504916002238735,1.8064506753625118,1.7617020041737521,0.8876354494067682,2.8362452205408286,1.3208551588610637,2.6360067723563265,2.3671129028023055,0.24121107096188932,0.7457591613643553,1.4437932606875201,0.5523094088358123,2.7149752886951335,1.4579349151842638,1.220649842168895,1.9832378256247238,1.2505062311417874,1.3887232283693722,0.3397281155196197,1.8083130035610013,0.12412399811239894,1.1904852697833264,1.933136743945573,2.3604533618847316,1.011391972704878,0.5225328658455908,0.43279759417676034,0.06003667040631022,0.9716006936426536,0.4354052431384894,2.041655064255152,0.6323072299232071,0.1301485497460817,0.8641695213890583,0.4991196630140786,0.7799324194619544,2.9773531696800237,1.2551231089772141,2.925415928050467,2.2409922433814025,2.5490336875867605,1.0039400710814124,1.8474376178447722,0.5514538370576205,0.18708958965923728,1.344950741824857,1.5354286797463206,0.9810801092306995,2.152746586888894,0.9945751098392,0.8197150302092022,2.072210465774269,2.1736711250000407,1.0469070187587588,1.4114991273495092,0.07619336414338074,1.432782435514235,1.9490168164085395,0.5649993994272082,1.8595235854379144,0.5385210130230595,0.3681184491818097,1.3790137483538214,0.8782524720326355,0.2753596639419007,0.5124517009802785,1.5683774482881179,0.17932665836112682,2.932681695508792,1.7950678650870062,2.136696706113608,0.26094246626461937,1.0338268031749975,1.4162538596260497,2.040814946334713,1.242314529797884,0.6768316658605225,0.8006288416320118,2.4529963832565853,0.19467573975943275,0.7550584513544194,0.44360306456964316,0.23670292484361055,1.4741306507711887,0.8598533650371492,0.6138491912453001,1.637417368918142,1.3800922152080635,2.6220317375680393,1.7742887403340055,2.5053257501244173,1.6611090057585098,0.3216788789756637,0.011967814786479014,2.6937099991005216,2.436076778515715,1.9431359993833994,2.932956786930312,2.1841285023803128,2.4800278086726664,0.6798620300822977,1.4155691658388463,0.502240886888802,2.477264536934637,2.684223347828199,1.5722126107766243,0.34238326987302714,1.5191798934767735,2.1998552865394294,2.8599146784389946,0.7139854335815632,2.818927072769627,2.643969763837874,1.912943081884862,2.5394562164818244,0.42723004320335467,0.8812067120713056,1.963595020661989,2.0649159714752017,0.198364176517126,2.2013139648761615,1.7837047208529406,0.40376646338318856,0.22209323390244196,2.780529241634612,2.768863668560149,0.6107322679356069,1.8434929511781026,1.797180392713644,1.248097296179405,2.027308324264311,2.8530814508366014,2.3219865284040955,1.949508779093546,2.923903829649218,0.536297590978797,0.16840904397980117,0.16638638137396544,1.5160654430067753,0.3057861028664157,1.2384357221441589,2.327417430490727,1.347724426407223,0.9022855793686009,1.2789597024050094,1.469136037618207,0.5746075704984042,2.2392464294800973,2.2791473842055963,2.2397565864064495,1.0890887048672022,0.24056241619095653,2.4506584897257477,1.4599174503940895,1.8139732666876929,0.750631857068599,1.7549893467585242,0.5173573082047147,2.4871109647642013,0.5164773171439689,1.8996047162456293,1.5339841905561222,1.6086499410164297,1.871140908662398,1.6034951533230695,2.8265160982239723,2.262290778655972,1.0292023086180766,2.295551725908382,1.0712357416352227,1.034264778290405,0.10491882894281535,2.290093231013146,2.2630004135089985,2.249213315531299,0.17814969028707073,0.9697533169078452,2.1174628369905113,2.584200693471838,2.9373066789223152,1.8759544827697596,0.8556167962861583,2.22965897592326,2.559349662777426,0.7336398017418562,2.313237170393643,1.2174168054105436,2.9538119986304983,2.623539339174572,1.5136909003885208,2.571547952757565,1.0897185396613307,2.3947602378038844,0.7637483846641444,1.6842122296729014,1.659506673584987,0.12131668839131615,2.467628240895735,1.689908549139444,0.6001989172691142,1.7904570564928883,2.93844955581442,0.4651868824813701,0.45642035895923017,2.6799636879813917,2.236218427446922,1.2583683383784428,2.1586687758001397,2.298048125472374,0.5641851793384318,0.3401376421377147,2.0768421075390693,2.2651669599077455,0.5420248258985245,1.7308406858146286,1.1618014964223313,2.6841906281033574,1.6321829805934014,0.06350341229745693,0.3499322623293222,1.6610441649303458,0.6897425527205858,2.2368809138020964,1.2884544247239762,0.5600367500161978,2.713476574898861,1.7961306146336762,2.890963828820266,2.612147540829479,0.11346050214503145,1.7285764813120517,1.3014186108249177,2.2101423098384974,2.8342758648540904,0.6482752986517517,1.3491836249968445,2.6207036251340883,2.049829794208292,1.8033119331023721,2.107002144667942,0.7900535928541774,1.0536138048019874,1.7539840331457113,2.682519078692042,2.7978849933527874,2.4225758722174837,1.6026428869408913,1.9037795882827564,2.2997652559769115,0.7683517157379594,1.5908012646212024,1.8260158546169807,2.4497886284737884,0.9274582881416737,0.7225122857190212,2.5192208176526067,0.7471916274474018,0.7806091368134045,1.4405499305007032,0.7836865935471864,0.000941323478635514,0.5774269154493636,0.8330805111423571,2.266328981634982,0.8772072533772188,1.3183065311464264,0.6950063913051172,2.2312358952229685,1.9496519853259024,2.6807054882216415,0.5261824423193553,1.7325227276772992,2.214768584411944,0.2928770286721798,0.06713899319539052,0.460613923065611,0.6202167418888842,2.4114941072003404,0.5641294861906743,1.3929539892927636,2.8295066041519568,1.616448250762943,0.09173924460580896,2.269206096868111,0.001886691637285276,2.7398487780602743,1.5838980182594244,1.2218756961992707,2.4747237036566005,1.9004436319036073,1.206146702165416,0.7320115587308251,0.09723289932030799,2.908872542666062,2.249682211309983,0.8276958509214314,2.0936993000145336,1.0673082659081363,0.37021570730057074,1.3136949207471629,0.901713613940722,1.876170328222618,2.5619703521358512,2.966403001276017,1.9061484705380245,1.0361125351292724,1.0901006187930853,0.6911640648595105,1.8585649481029423,1.1272696599769851,0.21014222566194385,1.8041413823286796,2.3503956350023847,0.4525183188001216,2.3582883890031434,2.003086646738241,1.4296526686241704,1.6954151220023828,0.48035243183665877,2.2872681729203146,1.7113275333483393,0.6425488837142017,0.9152871021010895,2.504233758510561,0.4232544251558321,0.5981543789243575,1.6477203610059523,0.09488144522090969,1.94786897233404,0.17616054853420904,2.293665536967937,2.500271479361845,0.3464228829351006,0.7170835152406194,1.2710615682159514,0.4665133731357227,0.48255174181850524,0.40606926819586375,1.1935885529569057,0.41264974397268483,1.0337281467004897,0.7077956508779342,2.1654808748665033,0.6500606111617546,2.7303409630906286,1.5007307909158243,1.060699529006435,2.1166758969322794,1.7481489927847265,0.3084722488112197,2.9268927906354927,0.3853059641103844,2.791807898192643,2.827673136095357,2.2113280670598225,1.3082643184062115,2.4788316177483214,0.05120616911049147,1.0464920677130933,1.985380489745358,2.7277432120849756,0.8750080677619707,1.5357126342768788,0.799786151901424,2.7531564727509297,2.6809616998010894,2.8973865737555644,0.1852916320175939,2.145259046257684,0.41777616571355947,2.5273149799118926,0.6290543181763228,2.7086790515001073,1.4625621056366809,2.911121973752861,1.2409625929819428,0.9907930980166646,1.2541936881058817,0.7116676280486167,1.9974476972700315,1.1169940547936124,0.7791813389334621,2.1053924552547336,0.5724729529729715,1.5271156847241112,1.8834999291527177,0.8875206294058364,2.2765407928333303,1.4991819396671415,2.1137506420739856,0.4997878869475938,2.3204390883364114,0.47067205377907606,2.8512934901427798,1.667672827473428,1.5180282022099307,1.289298591540359,0.9304373383316973,2.8683153759068962,0.8186008397092099,1.9187465171872486,1.5853173138938839,0.7060674100834714,1.7739531425935702,2.4346913313447045,2.2776187558763104,0.8629045359287362,2.4427450286604246,0.6003227043651778,2.5365244638717126,2.492374228703839,2.853852805182293,1.9877393363208522,1.3260416617526956,1.2316170906571198,2.2974250661836066,1.810670456294134,2.4779170713820835,1.124507563032437,0.29525442088263243,1.7886879328583003,2.3738780432878532,0.9364749314084675,2.155584956605053,1.5233759194590961,1.991550800005628,0.07835710654969841,0.08387666175293318,2.5837488503742145,2.708072945378026,2.415085250379744,0.1735388242450151,2.875180497608521,0.3230175593331166,1.8851000661482844,2.407958049392343,2.994102080646724,2.988352930473611,2.0469164286944492,0.7528709687160975,1.998967186664395,0.9067400570986375,2.660996182591619,1.7772380012712026,0.1372164040525805,2.094559308095872,1.996386466815856,1.268274660326512,1.0941508368006525,2.392332024605679,1.1903159417564444,2.2102831634465177,2.458479229389627,1.5690881098512708,2.122680164452871,2.9457741752417004,2.3760020971724565,1.4691893601386041,0.9544975228398438,2.918705734409466,1.1975862798453216,0.909559198525576,2.4371709746586747,1.365509310924676,2.9754718973673393,2.3183141300881323,0.7918533795797937,1.1441510598765874,0.9168716864403068,0.930076219082014,0.9880915209208556,0.3875466520763433,0.5958303825283555,2.7602927956156416,2.038078130167078,0.8451409341167824,0.3991870857956241,1.9034021376575825,1.5150803421147354,2.6275060570221447,0.4601759804901109,1.9621067152020948,2.5045946195043456,1.516185860913835,1.2823967320944558,0.17235959142016277,2.1206076977955446,0.3977750767445767,2.4416992723486777,1.2877851495815937,2.7225326283166966,1.8083475495649488,1.7193356400955493,0.7933283099675894,2.1044110264634552,0.8538881140402521,1.4701569330150897,1.6666475213319571,1.5529202784127738,1.1110654169824072,1.8458138292069761,1.3949434027543115,2.682931007407376,0.019071320825298166,1.1537697195368686,1.2555508568747857,0.45404686431659536,1.0200340988537182,0.9295560082685046,1.5060216526920966,2.237706813027205,1.7964108591141366,1.583887382497131,2.627060232414966,0.5773271194563749,1.8889868887968753,1.8639992326539705,1.444162864784638,1.9717059438259241,2.285390045189548,0.9917964237493857,0.26032339030414353,2.7419702121848286,1.3503920922864958,2.063800156731288,1.6607320308013949,1.8258821999541102,1.9175139446583287,1.8371284675782122,0.24032714937136124,1.278629825646804,2.0026139677255417,0.7948510286189727,1.9366770241621136,1.5368514811706524,0.44581765595128453,2.7644284808188586,1.390689255472832,2.036239497571669,1.4410784480282772,2.8996378908103733,0.597918029060394,0.41909773429740826,0.3612643425142681,2.581228377270634,2.9573690028375523,1.4656065150320137,2.7704041281128973,1.025690966956737,0.3940133439566216,0.9561609038726011,0.1894506558363287,2.4597074601269484,2.82488990138744,2.128143230397517,2.121410771294933,2.612389850246913,1.6785768816440174,0.3440390060605649,1.7013081074504508,1.148798583347151,2.9016339449883866,2.8904256288813213,1.3595447401119127,1.0091444926878608,2.551622149018316,1.8150543609917327,2.149739422852794,2.0969609028199026,1.792460854685663,1.3936471862146333,0.7585663775012992,0.9035353890984701,1.0290873234045466],"lambda":[3.912747312170257,4.808368155389999,6.656772271955584,7.712292848130526,9.90851131250741,4.4752414277235975,3.4329427063873763,9.822349399697266,2.1432923063841502,4.154330090647647,0.30481724160120516,4.6415302852266755,0.3766092416344069,2.9517188121330173,9.113613122200881,1.0025519888636425,5.367424862679706,9.856780312897726,4.917436708355387,1.3951267121035449,9.080174147810796,6.2639792224169,7.048949502086681,7.452632240135284,8.891266315038626,1.3592527448095115,1.1847001289185788,6.734692623416785,2.971139726409675,5.499363214145507,4.315157471794198,5.041891723953267,4.261886060126738,0.675820570011394,3.17752426227234,8.171191172410952,4.23172086411848,5.559374521494352,8.75320184239934,7.36269856772555,8.347410111262246,7.1216579228137515,4.004447971823484,7.554905654363471,9.15663245039402,6.757477379096786,3.285661975767713,4.343982228326548,6.2140850393298175,0.5102437224057566,3.560909023423997,4.9380025841612145,8.941288443018573,0.37893014654689416,4.452798879426392,4.036490437399019,7.520569630310052,1.6555956955763107,8.120533038706522,9.018213481899064,8.779566867806231,1.3799982263608457,1.1492227063620186,2.999023836928423,2.7180023949219767,7.12805596689249,8.825617141378885,7.3123440349636715,2.5362163621256673,7.264920836049353,4.725389106851161,1.239225334135352,5.4396176587010885,6.159852772963492,5.888758071468862,0.31952962395826123,1.545231035084802,0.564139555515879,1.9252371136039081,9.386380827402117,3.538227579509552,3.0177350049772023,3.0502405265078036,9.870964212000446,1.7373116617240192,3.314045651222004,3.2504437751159365,1.7215525442813617,3.3482648827135675,3.357491803588031,3.603146869063427,8.998800902883271,1.4033705405607066,5.61454566291451,7.79955125856965,2.6464104768454932,6.0462753660072295,7.6575434252596075,1.6567047530534462,2.148533781633568,8.950409098389976,8.940067210543504,4.896726432149007,6.814749743074686,0.37159698886230164,7.062816611763722,2.99603588748544,2.7329792221544147,4.9299322247893596,5.631392300548843,1.1616256063234576,6.553943868511998,1.8563858163987423,2.701218479513141,4.933169335027419,0.7181264906826557,7.0466851709421485,2.860895972330395,8.925770409006065,8.949619147728892,1.301819013829375,1.1094908885571697,6.584695476353026,8.055859118608787,2.8919472825370285,2.3193993767840038,1.3206802611522783,0.7138521669549558,9.297321604824822,4.542836101594632,3.133120045332105,2.1596077458656238,7.480762937106231,7.367543771176431,4.426564443638233,1.7153330746100859,8.227981460698249,0.32109067236048006,2.746537877481754,1.2232265519992014,3.4090435257791007,2.94179474036917,5.291779221361892,4.38939753819267,1.665157249271132,2.898652482102826,9.019444800591756,4.050017979680353,9.80566508492217,0.09828599345653499,2.41796261652907,9.505419968019226,9.6363209527796,1.862608473913705,8.6428329184214,7.042097598400416,7.377063773465831,2.7702449575405352,0.5105100833405274,2.880583501476195,4.907550985957276,0.2595116724279256,4.706911156637252,5.788945067457116,1.3719159402224368,6.87460298353095,2.1313089613757064,2.1627256673416784,8.541849249906745,2.1241101506180193,6.9004963429920725,3.9136532123175916,4.865058107085131,5.0870287754403325,8.748331138907751,8.08637124739779,2.329203408734808,6.755655037781494,3.5651709548233645,8.427331436079886,5.648350101433309,3.2197993025395566,8.249519520769935,4.851150898489394,4.614177082301416,1.5750573773198728,5.177150064115006,7.779069388601576,4.785830100030215,7.224972828183467,0.7386647208333064,0.8630354494180348,2.6840137567887212,3.4375228873878627,3.595735747714548,1.2027721424550686,2.3161956498075775,1.548926007817657,0.3436916511047938,2.9049542265532757,4.421392628355923,6.901778490249823,8.643658947830312,8.738747096222967,2.6430741777466804,8.171307860281264,4.081168028461799,6.490270159432649,5.440203822398388,6.935703949093193,4.955447371722872,8.323444563303784,4.444551762145936,9.188879818547626,2.2982013166401116,1.3511360844911957,3.3948287848897696,2.5280929203429237,5.955154702236756,9.162211027760955,9.362683818145111,4.282801962302212,6.884858693144029,6.288973296332641,9.709934772427697,7.00100736575161,7.885528125326977,7.466081297109339,1.0023682715449889,9.919056336454162,8.185983471429264,1.910843496210175,1.795316771349036,0.454926261053028,7.70714288638906,8.085358759942412,8.392666369869668,8.986688458658607,9.83158555350278,7.835348668196101,7.6956966365890604,0.3615028020850608,2.96679031827652,1.9743806219934568,8.114150869564734,5.385528773546035,9.502379980067966,6.971611454207691,0.6922503156483684,7.1305531846254855,7.0663898324553,7.766432268258409,9.039189788043217,6.030923188541335,6.547179915507348,2.6461388735726787,7.939317755840907,6.190000277252647,1.0652150043301734,3.807805300992355,5.021505025669432,3.099612482673826,6.416497466264232,2.5865052952433354,1.4753223379784042,4.810870820223776,8.339817645505832,9.069709137086743,0.9504053680757685,2.002571722418458,1.8579954851333769,4.705643897840921,0.4728614476445414,5.273134911063096,8.10321210833348,8.607165389283837,2.2847901061033538,0.6630225215878549,9.764444842458204,4.079115183052493,5.612263656020231,6.727879525373652,5.201073986588556,3.7288047222531495,5.346584604067166,6.948506873670239,2.1321894951887077,5.471738575520851,1.5941258755618293,3.9572835373766146,0.41232256764268893,4.3940848250681945,1.4693570303922598,1.5047090357283754,2.45742849922169,8.183572735484512,4.853080947192041,4.088849413459719,7.131474587144813,4.87808492820367,3.8608396871155826,6.052163893870435,8.48167899346432,1.2372771690153894,9.643893215275963,3.854734218688498,6.472417480167662,7.0320861234373115,3.94586428151245,0.33480068389530215,7.658123420839667,7.1936716772264075,0.20411513849194485,5.241477861962012,5.995643606086675,0.7603964097973082,3.150641809196877,4.832031868865537,1.5690169840897061,8.97015406289414,4.413743349031716,6.645166311068598,2.6090049432022155,1.9291733975167746,1.6316403704908011,2.816939275673449,7.030636651662048,2.8156661283584206,3.2379907089084448,8.177143852877517,3.617549645862277,8.210751513608017,1.2996850223714485,7.586923624400416,5.307973535804886,0.5996625963447055,1.930442947633404,2.8551351337640973,5.391319004213456,9.598181502046918,2.857721624231875,6.794003627975897,5.212221341899205,4.992119858096191,3.2005982750916617,3.5556173623301413,9.643863731261163,0.023558855709051585,6.51014008083542,5.9866262303497315,7.458186060568259,0.6264008117398157,6.576081770240039,1.7021740648970773,5.318625001274457,4.088468006679841,5.111087873187539,4.66111218842901,2.9997055997372812,2.086129663367391,8.568586098276057,5.0308050537846105,6.432991409216326,8.712377108911056,8.748718206087512,3.022521863050305,6.962257319639282,7.886714458976039,1.7269285016895064,3.037692637909011,9.44271057707655,2.1163446445019174,0.09138358537770452,2.0532796455404068,4.594856189163686,9.107872994483696,8.974124612836532,6.706722421887923,5.486343342600513,5.615665922461739,9.232705519297031,0.6906314949429126,0.8639387381274921,8.561073660746683,2.767074689975022,1.4440507155008575,0.7973737487942856,8.600648270750536,4.056539457192758,0.2749388234666683,8.73132641037597,8.392226048837134,7.038052858734256,0.5322556773040787,6.334515627851474,9.291198586525095,7.031333051747037,5.073529209597023,7.542354588612303,6.294841001242517,9.319059441101707,1.3930145466028532,1.2248064720131313,7.431491257941749,1.5054014032752483,3.536697025398108,5.920641156850445,8.367189231598907,6.81182197979224,4.903956237848098,3.977887008793639,5.453154117177792,4.620462023352145,2.8961709035270067,5.419767761399575,5.430318775077081,2.9326575213023465,5.130498549602969,1.4203229323002575,0.21834912875210888,9.063603319179517,5.876421086832064,9.747123109886061,6.682418732282985,4.879827629927391,1.2533658849632423,0.04522088669557611,2.312337388446093,8.13321059758836,7.721539462090128,6.028352317926671,4.808658294333997,9.21720255782243,9.849651228905271,6.792674083532956,9.15246372662616,8.1553995174325,4.868143362874891,4.9490237064936915,6.559631158041201,0.6686503102959551,8.510146990483033,8.533948419920277,9.921320398870005,7.760697336562821,6.59045639880749,6.388527408938247,1.7658672680875154,8.66501508272428,3.5819870700258227,9.644354554835239,4.169837115444317,7.254275567155424,9.614899082090638,7.47389530146121,6.950496108908402,0.9870822024245873,3.139639386069699,0.6286877508734756,2.8844716903713197,5.728859817361416,2.2446834528650728,6.597272420139144,8.87776860700691,9.229065478877772,4.350053738302462,8.746881433212362,3.5912102677784885,3.5171316320335855,6.150360435037796,3.0661134719321614,2.8296849768463583,4.705717420471531,8.488333764767093,2.7077437293967876,7.72753553251412,8.115370625569295,6.017296439469046,0.9851476926597869,2.111377353791364,7.109562013907027,6.056529850646266,3.072375584894882,7.562627323013564,9.862684355115586,2.6346605015401248,1.0214840361072075,1.477701929980546,6.550744412777194,3.2960736545926905,6.29325707157721,1.686401565451543,0.8612096974351791,2.4010662897084556,7.213886250396005,1.8234128649704728,6.341813721885972,2.6422180935824513,8.221539645446105,0.7353239559890912,6.807782833359406,2.3329067706687945,8.590410696642998,1.6941255150958012,2.1885931406042713,2.690739260856614,4.3390667892594115,0.12603630528264853,8.97533315214467,3.8004822750569356,7.661402168724694,1.6788185335318717,2.640718462800249,5.785305651049857,2.0134990570146516,0.2578966666540583,4.257252251218255,1.0757106788431603,9.815449673018596,4.097558973441253,2.0299189790859895,4.746705958077624,5.367725814644954,2.254648751151731,4.517533348918386,7.117588952120942,7.835684591426189,3.132552714254264,3.126906441120141,9.318979728332032,9.358700220263271,1.9131539501998263,2.6295774746088574,9.312606227387514,6.303082455322759,7.650644983043014,4.392833936173646,4.723963820678381,6.704564812182241,9.673718819280307,7.78318762827126,8.358215499819618,7.365337560714247,4.075727035587762,4.034906854898521,1.5677797625335144,1.6389585695570208,7.523280050410439,5.21162556797962,5.881600801056058,4.4008277541707415,9.729520739060307,8.908055837535116,3.600604397183509,6.8407003220825,0.9720474016142844,0.3399606783511899,4.89128121523043,2.472901488695338,5.863409292030079,5.0636575734820966,2.1898752278627476,1.6784352924671841,9.636475042589721,9.600210032106453,1.0835396751603699,8.572075156040952,8.40242264893065,7.185296156274969,4.781934615928691,3.326943441449499,5.511722253956394,7.712566494705371,1.3726694355304625,5.713504151836122,9.907398311723767,7.387933337928665,1.22540280459849,4.029589436756515,9.010684103878868,9.947732570697207,9.046438996677042,7.344292727335069,9.185059271185,2.53840668523319,9.543177481318564,8.976321917774753,4.314609559366021,3.8270987316285354,6.701989586887354,7.686309555482511,1.7552329902970976,3.050644860350926,1.7169768033362387,4.822628560277029,9.829936283350202,0.5204403062018281,6.713819172315301,9.890672040996105,6.702171600886446,3.7277541876697384,3.171981880548913,8.142171491623163,6.113492236496012,1.876514038445869,6.897378499607589,3.7837103445274023,7.928766856325662,3.6759464641561412,3.7082169529473874,9.546508341668607,6.01853706003296,5.805946261034805,5.513883729986306,6.275430108889529,3.178618389758372,0.5513625188825366,7.501658774179438,2.9439602691692413,1.8801902399272374,9.415049686505764,3.624578652138053,9.847981731733498,0.9764722355711242,0.23581707389870088,1.3652557182329184,4.127573189810074,7.444807605553789,1.6814254589113942,8.203788415044208,6.1946495637443295,1.4509460483090564,5.965940793679807,4.282808217910372,7.122206609902277,3.9020262662288885,3.167988237286221,3.5754173744546858,1.3133231671066548,4.833558550212043,9.754497814518263,2.29053808957691,8.110512480084918,5.77754536275906,7.69753819525296,8.48330478489087,5.110905131922465,0.277289060206507,5.37372906587332,2.3461235165637895,2.4197286409466834,3.2580015321588762,8.13739422053844,8.415472443477,2.680988992256037,6.953122983430024,0.4316981068780579,8.997226710750258,4.247536050588698,8.608644369658398,4.182130507066706,1.034215245957102,5.830814631895105,5.915825207439783,9.569380348511503,6.408140831992178,4.302872187970619,6.583102712004816,4.053680610777914,0.4396834816314099,1.2606257700007695,3.5481819771629475,3.238104039387497,2.124978302034539,2.4383619259003453,3.1200102882790737,2.2359077913007885,6.884781845100283,0.32888218838920125,9.348326054914995,4.9808371646218275,8.975357702347011,1.0958277258417182,1.5178777667399812,5.738113617007468,1.8625310916151872,8.74669163317125,3.024843412825622,4.158000728517335,3.6044549532477643,1.694802047897357,8.758862503779579,1.1150905731722527,5.920491999799546,7.9103352789358095,4.673425407552132,3.2137108143509074,5.486755879068282,1.1025365164583678,7.843209993565496,1.5104969238110066,1.057568349641551,1.8770989434017826,0.9577743834393049,6.802506142068787,1.1478863991801647,3.0873165582490447,8.360494398550731,8.826377282609998,7.300158122449201,9.4999017694573,6.014811176587653,0.16257712093855403,2.6791626791738765,2.212410541204568,6.698461384184049,9.220129750915337,0.8553438657097279,5.617854842601853,8.13403345706744,2.52783487776282,8.855694336384603,3.3634424798937412,5.699274145283216,3.4160621770284982,6.04262334349219,7.768190329779346,6.636974599012653,7.174041084035368,8.551444806514215,2.440956024650347,6.220949987882049,2.536519295176829,9.59988589558141,1.1363558672765062,3.50707060404587,1.2085707522066103,6.223445666157894,2.7325034031923368,8.642397562823875,4.662205592660722,6.447200039925041,5.795485345453059,1.8295261486823722,1.0959779176581574,3.9742851749264174,4.214221248332137,7.987639096932249,8.612620296079825,8.78923184723287,9.331202066151615,5.148200376922761,1.7902884786453521,8.576918937726541,9.320037175437248,5.106568031028189,4.666441444656771,3.132109635769693,8.282836623441623,8.66929846777506,9.67157565331194,8.292426332214195,6.830773832646855,3.845549157310302,2.162900775628571,2.7501911673950286,8.859052438820035,5.1989027083970685,1.7169867851791953,2.1166861834702067,3.7110711732825763,4.491224016568567,1.9960527246453141,5.638427605039795,5.915013970889158,8.193561402550431,7.086728373794358,0.7998854905365804,4.087026099829101,7.4680742985834225,9.33288382105476,2.9283406194582318,3.2003671695554714,0.7863521681613417,9.127511097910867,8.746358619529143,4.017085874863757,4.512816145951879,7.631647025459037,8.044635232431787,8.950906640840602,4.80946869322898,4.738199975527689,1.8783629731567486,2.702454842105757,9.517809916926222,4.501269556068596,7.668014466003454,8.684249916800955,4.490389348769311,2.4476425037347482,7.909136323571131,0.09108546476082724,4.099401021414549,7.115853730910866,0.45268190792712604,2.4100765741109043,7.196008536414247,5.808809126707313,1.8306441597963552,7.2186327896428315,5.481235154614907,1.1419438060635678,8.471473783687568,0.4699385489101515,4.0125350615702216,0.5400892598207574,1.99400587073159,3.977109944727182,4.11420943281022,7.838546561748155,1.0711034317385892,4.185675135637474,2.365627026577699,8.822254590479872,0.3175691256511981,4.079610803405522,2.290399893248891,4.324751004756086,2.5944231386708183,6.741082779597402,1.6774407875519026,8.937059161527499,5.664205021916948,5.445309097286797,4.440619348165855,0.7377382925100395,2.8641452714344573,8.406471847277377,5.634433656602525,2.4645577479149794,2.5554787877103236,4.221403848193761,5.867961729348314,1.4595843263683017,7.8616133134767985,0.7919275377139945,3.2949776042539436,5.725526170679453,6.521361685722413,7.024714317542258,3.0946773208148337,3.987309315636627,9.204100708900611,9.618895357517419,5.5483821717348185,9.960304762602041,1.7185737162168047,9.518512706044335,6.133358451845535,1.3816901466664033,4.791462685353009,2.6634780879410846,3.983100603812648,1.6797998858574203,6.330125514298706,0.20094560179444887,5.325085051677032,5.23387398696239,3.924249346997153,7.7969104899263675,7.044943166453194,4.3877512407596875,7.859671759637954,3.1596957321949137,8.941152434886115,5.954820693081522,7.891432031122918,2.992015117626754,1.706114980552349,8.48624193904988,1.9294504593619832,9.331020774318478,5.831196230056985,8.86213167286957,4.5491979277745465,3.3422762312041376,0.1984401260324553,4.556003133571876,0.14753387357395953,3.933055251314852,0.27017453117402557,3.008213499998247,3.1744153274842124,9.863223957710542,4.0165461010850585,3.5783593463250774,0.7933700676057698,0.11134996715308265,7.732770225168572,3.0999846039340317,6.5345961283020015,4.892967427981583,1.8832192936640046,9.185485135029325,5.348874420342005,4.636529665071752,3.9242374814837455,4.821843567935211,7.142174077968013,8.053234384635516,2.0362038593266463,0.8666637650996467,7.15730843528249,3.9837576722378465,5.58592060652177,3.0096053119795463,1.5885025303890732,3.387956474983058,5.931491421882365,3.624498342091931,7.26496680406523,8.613529913229826,5.849764230990218,2.391601048275178,1.7583947635856667,5.563269403143027,4.436849861211289,0.1406538356432252,5.690252850880963,0.6446657536994627,2.8641212903180335,1.8422071640510262,2.1313489440656674,9.127718300452695,6.241927323584074,8.928614798034491,3.02652934619813,5.315282127798239,7.349222915355716,7.444477870430173,3.3836404888409533,8.295848217924746,6.142264535493391,0.9732888213898594,7.647582285457379,3.793800820166864,4.2506621053913545,0.8603308180420433,0.02609153637012085,5.706838974322688,8.17127198148892,0.8043447525635994,3.0750194502664274,7.097506881183662,2.679022874248942,1.3757726017839689,7.239453542191178,5.493389405059559,5.133259517859663,5.917365828312966,8.045520390381514,1.1543149308292988,1.639924722926096,7.3257970231696445,3.7619134448767544,5.072679088630274,3.975156666756565,1.756167121038541,9.330209596735417,7.514523190295883,7.363931037677672,7.318844148215781,0.21532762414751216,6.0297952283460665,0.2198997300058081,7.659963816521794,6.152677711722731,8.730314589367419,5.6511266790063335,4.2925851748870585,9.09547622549564,3.6039075378776553,6.9205214070195,7.193781563086315,6.973185225809917,7.441847633965875,6.350727578796143,5.76677328821563,0.17504497968163113,0.2000343020575679,7.700572053682551,0.5358444847295551,7.846818782887704,2.6973745205630384,1.2883014692822825,0.4853435190493216,0.5395108308530427,7.245572968712182,4.2596845307253055]} diff --git a/test/fixtures/julia/medium.json b/test/fixtures/julia/medium.json index 37a7f69..d93056b 100644 --- a/test/fixtures/julia/medium.json +++ b/test/fixtures/julia/medium.json @@ -1 +1 @@ -{"expected":[1.3734506397542101e17,12.815474725749572,26.944846317169546,30.48908229294519,121.17677558270967,1.1355596948849196,2.8759848309303378e19,1.218441984975502,238.6090549480614,1.4734073131050684e7,72.65523297498865,429874.99782932026,1.9812030222331398,2.1924193822417664,11.999423889057805,1.0065431947360035,3.3646758303525015e6,1367.1508496176589,1.7474414764177635e17,1.3157019416749447,213079.7880864827,1719.8241253909591,6.8790014922350995,4.271106141275182,213.0926341259377,14588.12372639995,67281.81106345334,4.183409246938189,39644.71432979606,23.22032608750913,246.76978487861754,4.800316578021353e8,3.596688141028876,1.0722574565219134,2.5771685159549422,3.903468655208026,31909.977946848456,1.3244898777077723e14,3.0258460806408558e7,25.459159747419836,2.4081253691126906e14,1.0851448973988997,4521.681056155769,1.7939906068316335e6,78944.25018354943,8.31646597132254e11,7.707148906190395,1.7342954011675715e9,1.2240186026746986,2.225874405339448,6.974726489498391,4714.558557955141,14.605696527406295,6.913979318442708,10.84601200764698,842.16977191876,1.9879147411651898,16.74499900414346,36.6737497738803,4.186834231491588,2705.682925690175,4.176752229941563,13.204351014714339,4.269614801043888e10,1.737639894415913,23.0566518474711,33741.0189511495,33.48374213385361,3.987290774209302e11,2.6581188373385456,1.6054626836567674,10072.812478029684,2.741286492217376,6.391494332419045,139327.0971307971,93.7857220895562,311.21059156662074,1.8654379162026327e7,5270.861600482986,2.992956408316243e6,2.2865825825758476e7,16647.40738990891,116053.43155003726,7.911200407806339,7.934425303482313,2.2391738123848295e8,180.1026322820485,2.440037444540616,3109.473973029314,1.6653906176601398,1.4582497661006786,20581.64087076241,116.44342787178545,1744.3078218593964,1949.6537218102421,1.267185702601398e15,1.3734527747192744,5.873674388600522,9.383521238594797,965.2144654464863,1.4692969350149,6.848146764038406e6,37423.19913714468,2.555332663638334e7,4.913253947248742e9,3.580233177355988e6,1.20289732046614,2560.537292963985,1.3872769661062919e6,98.25642765592507,4.8383430400012655,33.17064769832011,1.2039789849384332e13,1.0880678219863544,115536.50608246846,8.627114031159086e8,3633.0982648177032,1.2392512724048187e10,33.26843126904796,2.5754717870959905,132.24761040873827,14.22100206908587,421190.7848803087,1.0259662907808935,1.2582436128872303,396.92423019016326,2.3122437739860593,1.2632330981558761,88.31051789982492,2.642500242800286,7.831235094297345,335.78766394853676,7.465507876292508,1.4046106097381188,5.503581448686852e9,4570.865233237074,1.6099676848814009,2847.817706159069,1.1710255017349565,8.278582503276187,2.5364964090921185,1.6857483314131567,48598.74045973996,95.57668099621449,3.889261995575626,343.5740054183052,12337.425130776777,1.6969336438010334,281.2782413292219,1.0947578691224054,2.424454230765061,25.755462219436506,4.922750199567319e6,1.2259325753300985,1.5909439949047872,26.74702623518699,1.117452924522014,1.0515407366140182e9,1.0538987847565353,236.35166621064207,333.57109865109487,4582.075637714987,245968.79306154477,6.172988434388024,3.995336054906167e14,457164.50147475675,1.9463190961288777,1.0109996184863521,320835.9190375464,1.3171337660091915e9,1.2413204880244266,1.1067595220039594,1.6178948948227485,24.31522856837332,267.52726539267104,1.5301344416325733e7,86.82363476284104,17.758728055519526,278970.20237075596,2741.632185801218,4.8999839373472584e16,5.409240683274516,2.4159213668874533,2.0941678542601043e23,5.037137142271881e8,450733.83558982034,1.9653886237357177,38308.87955794188,2.1932270218468073,51.19647985919251,1.4870456962189178,3.5901984620865956e6,5.768433977955838e8,9855.1379012045,273249.2201621852,3.8953578540180143,6.33848044537575e6,3.3320674860185975e8,5.879297698353156e6,91.96583008244784,1.8582700561980876,8731.022391618679,13931.411410537978,39.84232089065104,1.3265830061219637,2.333510469561804,135.43811373671315,1.6656259005444047,527.7391037284052,1.2761885578645114,37.551353823283904,59.97977217461,1.5244430644129405e7,2.5376998246128606,1.7594605273548636,1085.5845412868657,6.478660253237068,5.273190706892436,11.163676160302467,97.19813262320076,15.525634129127445,3.540537592453311e7,932.630857480099,1.0859822081877852,1.9921226746179357e9,717700.8435151645,9.096444841609674,56.99311278832858,3.9347112530692124e9,21.416313272625747,1.486543670406052,15.76013270566948,3.6793398516996305e15,3.86581921200224e10,12.032471107117443,1.2301808529307456,1.6137662325564732e10,129.89098977620074,85.83901916956411,7.61479293539911,1104.9250400529356,1.6273737802278756,31.087047533511118,753397.0860257479,5.700689029382744,1061.3243886074758,2.0760272748224873e10,52951.385749701876,113.11931771695691,37.9420585902792,121.90203914356671,404.642922303025,1.5788214106057923e7,1.4771563515599403e8,238.34064864440143,3.3043516780555464,2.735343081692089,1.0733214300604883,14380.341830753538,34717.45878371484,1.5675823757171496,1319.9257100767234,6.38378382940054e10,6.526781253146248,2.139446123944354,8.681850658187729,1.7137890827699394,134773.88001828975,51.22284878277003,1.0211541202593346,2.0505862436674482e8,79.6808496113235,886838.6677112292,8.60687265900205,6.257040714607853e10,29.374042403925383,1.7056344068862445e9,8.004832684342989e6,2.4608266306964572,1645.7116702873614,3.6093130329259226,4.540208104258872,9.004311938913148e11,1.0534385871799674e7,1.1932996836887175,150.76184313675748,1.0660366898416467,26529.099954948862,3.6522933172812575,1.400978801251063e17,3.7838426264852645,614.3409917392016,830.8082054045386,40.02698384792635,521.7266814952237,1.567220875554104,9.067759875434373,6.929836260260043e11,2.145242309353878,53340.16734151926,2.9588885934244207,460.168187238429,6.807584058372242e6,64385.854960557816,42.70749597735309,1.8608517364665487,2.8198687707405568,3.304872605096315,10891.79648730732,2.2243706498793965,1.2284658251018454,1.6844155565904009,1.2546754615073947,21.967233940271534,115220.71843667052,1.1129306734074798,1.1033067436747048,8.898856562920602e12,3.4740403282601886e9,3.133127738300984e9,3.0077074384337068e9,4.552228056536692,22.79974145055292,1926.9851994567412,105.34355012075385,1.592343808487772,3632.2599746677647,2.243611678922997,19700.694519304154,6.025502364528457e7,1.046171036521257,3.446160535118595e11,17707.224690701973,3.4373043120542315,770336.4713967377,3.3341200407800637e6,1.0415572380548852,18088.046368847772,1.3929375341482428,178905.51166422214,3.1897175332803522,75250.99868481925,1.3905997036384292,8.350485054216914e6,2.3151566625167,1.0967317114061985,138.3993160474305,1878.9149797552145,3.6329307704320364,108.96195333973876,1.436133880007056,1.005438204196019,1.625908268682711,15.756816484432548,2.570130549989876e9,1264.336765715355,1.9248117842833936,285051.6990226359,4.411524642425972,7.824138960296284e10,1.0205422056784628,89442.46753371111,18643.19731072771,674734.1052833247,10.047077033866968,2.1163551651060355,3719.4519034163973,3.5136534109789768,3.0890861358261983,34483.12906468146,1.1256129103151888,1.582429318966362,2.4211322822437533,3.6323615793430415,1.8581468030523411,5475.903091248452,14.518230905803012,15.845580278015692,7.827284628828203,699.1523458261954,6.067914120800691e6,5.265353623545476,1.0872320765508049e9,1.8219771808514573,1.0602237852474789e6,613.3461450986676,1.5001851103736632,1.5527022117171199,20.309175207166255,2.8793461144542523,1.0038703875192114,1.3631836584366968,8.414945581992368,5.402881129058966,8.942281587678597,48257.04224788933,13.242385484086778,225.00677773592508,5367.733966096213,22175.822953285744,76.65276968348903,951702.1379386752,1.3605933112601925,3.63245296358055e9,972.346806188184,1.016575742594693,15.044549304957973,881.8383380004971,54.5063259316606,1.4843108499729758,6.1086761737023805,435162.3690755635,76.44665076390216,1.0159178137204046,20.189084213161742,20.524912104772902,6.074024207386774,595.9358387543493,28.045255997932763,119.61776822275125,1.1852994335305855e9,6530.707483953929,7.302960079205127e10,3.420174403471268,45113.70147365856,2413.1583540935903,6.623376511670342e7,1.2267264003536986,106.35428539784814,116.96109605106419,12004.108030183794,4.137377759622704e13,46.54427419143681,173.97837901313108,306268.7235555417,42.534092997731854,1.509316918655756,1.4474372808394746,9300.378511977688,1.213881087070906,3591.912989989205,4.113078161077718,2.5494499375109356,19.42154617371485,107.57576496942735,1.024519713143606,1.5046211490140935,1.5713973216496059e6,1.0212065652976716e14,1.2745351132484493,23.55105159526597,1.4329708668972072,1.549791362930626,1.977304531660597e13,46560.78181826059,7175.06773388992,37.992369472409514,1.4267934335154781e9,14386.608301560247,135524.87861785034,115.7225753481685,5.220377323485701e13,3.202097585785462e12,1.357460661941753,120332.13351797656,17622.17966451005,63427.87433535745,7.13581475170073e13,2.634481394761198,1.0518401605241583,17.3887271472349,116.60960886158807,38.21076681968275,2.1008905042269777,19.3077550080724,1.671678708750287e10,296763.0544617863,3.49048446663676e6,127576.6228817277,8.003550503196021e8,1.4391243331958155,2.8497630412463106e7,1.411763072335203,329.0826115695073,1.1303515536276534,2736.920627492227,2.3307096359836583,9.646090762182934e13,3.5705629099064846e9,7.2879096990576295,3111.5949934189903,1.421103080606297,144.52291270029286,1.5797237931761032e7,142940.233046118,88.7551540674868,1.0209347816528478,1.1745640891497936e17,398.4627511234465,32.49980161606046,7.178299461739459e8,4.636006492271207e8,60.66450871920166,80.58682036323951,1.2284474552903324,1.4990335766178013,1.3362340124414058,1.563966334033566e15,7718.139831254347,1.325654869483892,1.4840646261667267,16.557080222803467,22.61282826862072,70.80942794708923,552.2065404647224,6.769474199168772e7,3.348351171992742e9,160.0533547067096,35.562111048577805,3.335199716055502e7,2.6714918966128955,2.861044383311307,6.08492098790658,6581.171226202397,1.341238940218263e6,572.3584264622724,116.31772886094853,1.1373804494071437e7,5.5003841996306955,2.599885869655963,3.8884651977266556,172.27603022905836,9.83637108328111e13,1.0399188886330235,2480.5054391153735,6.693868105902686e7,55252.46850132113,132224.08961501383,225078.83880046633,773.634715883533,11.393745608620588,267.80281679919455,1.6178488367157935,2.234887475121256,2543.247051911785,3.18623312457901,6.966834745600427,2.466893511094047,15.729060680578055,3.140737504469155e18,1.0362527225403277,4201.864588677886,224.71674460394226,20.581712434800735,1546.0277105563403,220.44951161460105,1.1559487691293486,1.0799043449503412,1.1987013447153287,8.332284293413654e10,1.4461506551637615,483421.0745590229,6.3400418851298515,5.724071739606094e9,1.3470882226880934,66.73728706916998,1.660007027055133e11,1.0003407720909274,2.7648586319812634e20,32410.286775452863,37964.94381920682,8.58197369795679e7,13.79426120711426,1.0817440359284805,4.237218543194271,3.6849739471537414e13,329.28722042404786,246004.1547268995,1.3189151969560933,32697.30634991416,1.0009114045481078,6.2214404496155014e10,5.608730112341853,605.1214753462159,1.2252847732968328e6,2.622301621923043e11,1.3333118959500496,5.410600557430387,1032.1334973855942,2.91720923973073e11,2373.4277409144943,854.5959861940629,2.20831838547242,7.744691982743491e8,2.8210198400399484,1.1263266407800198e14,1.646395735593241e22,3.145881394433536,40.27545534878423,6.906811001410235,6.7284460943418136e16,1.0772098031722559e7,3.687688951253474e7,44.39845190594701,1468.535908900833,1.2187051729619846e9,650.7700593077066,880289.8691322934,576.6683454442735,54.2482271222045,3.3600950228663108e19,1.3472158998440813,1.4620151038635338e7,48.85504769058569,7.327647408240236,3553.669655436921,741.5933396260219,1.071246229203274,32296.530307416586,3572.3744946674888,235.21117343962086,72.33188041725583,2.459803728961563,794938.3704464756,1991.856406843054,412.1593956408643,1.8189505287538539,35.08465156206409,69.56136955489418,1.9080211012006036e21,1.0256545966535267,3.1344327314996754,1.8931221211219103,5.204181418905549e6,7.451221497852346e14,1.1801113036563378,101507.25132062593,47958.17515174837,5.35434211938892e12,94.79797317046226,1.1372135077565668,8249.791845313603,9.463230294914461e13,1.6688935269225787e6,5.636027683268602e8,1.5599113816672152,104435.5928766902,2.782404968496889,1.4549416209330817,214.3673700322658,59.256386425393785,2.522194665048566e18,1523.1753167157412,36.672271082446024,90789.27054610617,2.1795837550805617,4.953370772959694,57.2503172796267,1.2571645414921424,106.10608489650613,124398.48495026998,815.1728331995153,572.7349559219576,1822.9194586385063,4.404352577935636,1.0303930317128724,1.1676105706976028,24.074488320783793,1.582324682923751,1.535315537194113,53978.16106070501,1.2531874358556854,2.499018821675209,4.4068624891508484e10,19.865824338393864,1.6875207365540985,8.47203125095087,310.68921186183354,30775.988892791684,8.826045875557654,3.564635468114576e7,6.882174222978123e7,1.2210518740808864,5.267422498915092e8,1.2058305115075314,1.9909644968371847e8,1.270550653956383,5.960460645413069e11,164.90330586764395,2.3172081314043425,165116.02009330638,559.0981116755484,1.7211782133012348,2.1704545334295098e7,410.03677570608266,1.3492293254010312,1717.7644249050593,11.435686535267255,5.39763858768349e10,3.7952737031084425,13.804943255205677,1.0969347182237197,25536.467302668134,463.1520555932151,2.278966867116501e8,3.2116180784465647e8,2.5670953548846602e7,655.4896871311479,1.726522499099334,5.078571161147847e7,3.130062709175756,7.448868439162003e8,1.572393215681713,1.3658126270388777,24.60838155695698,7.454307878392566,6.803957183942534,1083.0100136779029,8.765240520389503e6,2.10498760697723e6,5.623541673288052,13805.223587567576,26061.268181098258,114.07818716815136,9.458370336157395e18,63223.63641696651,31.08167796983007,1.688424171988366,3219.3054242485473,12.447058459728211,4.480790736818613,5.125544289064956e12,1.5709899236095068,1.7250868711228318,1.0058504273445273e12,290.5739408352024,33.76060277383162,1959.3457067371298,2.0032079645240146,1.7478398784356919,7.879409609883982,655.5419270799176,7.143621577416825,1.151926248732425,1.4095156711343912e7,3.5109160176912456e18,1.4674311657154977,878691.4569957493,1.2817777081346242,5.66871553714713e20,8.600247923285082,3.0459593470215825e14,1.2437827590316022,15925.023163953498,272.8302816872662,2.025204860257562,4.9755712014653195,15.102074397073542,387.58825863865815,3.1247777263360605,9.697033632272982,2.587664502995382e16,1.4503818689402401,3.769287296242606,1.0127654140039655,8.59503936341095e20,3.889338588011794e14,115.28881909117887,1.1274459761183262,3.6654360612846164e13,4.789536576200266e8,3.4329552638099443,70769.52953888716,70.61611611440814,4.407009663266225e14,1.1103531056325229,8589.37002845174,1.374982988014769e11,8.236346277081777,159.4160373256979,1.9954504598564344e13,478631.2116381765,51.65711159807162,1.2005785779656997,2.111356338788603,11.565141362602187,1.2369334847709945,88.61032370237874,23565.442341282283,6.703610772125056,35.617670582075064,20.20448774736514,34875.32234704203,2.8269038619675317,1829.456745301977,4.375983354398044,1.0055856025664056,11.680627190027169,4.635682934991475,2.2828594394516254e13,1.278924196379417e10,1185.7971125573636,1.1247804097467262,1.05734906306643,3.262722437932545e10,1.2390726079497711,442.3051813759405,1.784746549406613,228381.25862924414,2.254418469403566,1.0070182426437933e19,3.074487688613943,1.7416600061873255,1.4218549180134876,1.014242716723642,3806.673041139601,4.272098710683382,1.0350259022162143,86520.65359503307,1.0248370829994076,20.228375577325384,1.9117787888411577,5.65669479529595e9,1.0020130518801358,1.3104585544142529,1.8530342304583058,4.9250861483309984,4.479843401141096e13,18.162351319179017,24.603404142922855,1.5384830220057056e11,1094.2514295036492,9.803149203185011e16,3439.4083799873656,1.1977345184657697,5.448963163611246e14,1.7884147434557809e19,1.0597232365331328,36.24843024096375,1.712556985327617e10,9.950197179493482,34.810155754606896,54405.516802100436,3335.6559654504626,13.037490252890745,3.491099802546151e7,1.2464657105563897,1.7939877696778044,19118.270455204976,2.2406783042445057e23,7.882326065553834e7,1.2984860353112349,5.4643250412955955e7,3.247180714305376,3.8985769488190027,2.7397735046635336,3.335412926496413,437.81764307831804,1.5231520065780258e8,11.527836800928473,6.299523391714647e10,3.519684514926799e17,2.5837178316277063,4.4250046160419885,1.1102196264187407,1.1375696253995677e6,3.460431172768818,13.787045103061383,1.2413768262457019e14,3.4350669992531366,13.895371254209765,1.650758272171313e13,38.87993147999513,206322.69743018065,1.9128006988149187,1.127928767992398,1.544634832580054,270.7888069170864,1.5605465999341472,3.6366198556858875,4.993648821359861,16.685422223969525,2154.995024439766,1.3788444111814746e11,1.9299165536232545,60.35913554523203,16528.355682248053,6.958756545152334e21,16925.834806934563,4.895953539837953e6,2.5203715677469214,2675.3343539622433,1.2408041577445283,766.7598688206652,7.186669396934054e8,3.2035011210294844,1.1880854895960486e13,1.5455939348178012e6,41325.365983725875,7779.1025991705465,3.806020399567059,1.0956484748166802,24.61270716034892,4.205313116638352,1.567128340947225,165216.00542216323,8.893956314237493e19,2.0664823499107747,10.3919046810544,1270.7885978566073,6.202713745039662e14,2.514622887105868,197.9384145529482,6.08549831263002,91.04998616406067,1.7108114551080815e7,4.4372956227535706e10,7.778630039710777,40.71407222909562,9.014246349075916e21,1.5146246829289445,1.4535971859305785,3.1033669003879187,1.3288023685883386,8.637761014775368e8,3.303318927880926,2.6507253840589144,1.9458745081432818e15,3.9712631508293286,3.9998092506703036,1.2789130574603296,7.130327844193867e8,1.1733966258016562,622.3130097011272,40.414404793818065,1.9775473719789243,616376.2740211635,1.2489234856109385e21,5.452302043624476e6,8.255891639419394,2839.7222002443555,1.2980800987064933,29.934539818542795,1.0680706525410808,64.25659240400978,4.786729540579551,1.4198364024617784,2.024302850939521,1.926969606555039,1.0792617635309258,478114.02693641075,306238.5224410254,14.64055426270998,42.18193003814103,928560.7888776956,8.828315022400629,1.4843410510275459,5.50776699352358,1.6135129744655376e7,1.747875208499079e7,1.6800211562026306e11,318.621030836061,61.09393913804072,1.458298255303029,1.3342560251092954,25.51195439301362,3.742155233289083e13,8.236922703622898,681.5598501268994,8.973758174749415,1.1328413418775012,1.3301362359848028,6.8085865146445155,1327.4041363263389,72.82773578392404,5.9391010489325136e7,1.013893851647923,10255.21374981057,12.628421249721196,7.56702682555738e7,13.114965891878695,1.6886751181228326,54.18738776756967,33.90333391648294,6213.944369971445,7.502663629068549e12,3.8626910241506144e7,1.0491415779863948,1.8460627746706784,369140.17986736237,92.63677326036708,6.118737586374169e14,42.79211566580878,1.0057497027101505,1.1328210216484025,61.37141234055165,209.53473589132267,1.6080695720298654,1.118771323627239e10,5.4425296972132],"x":[2.9509837829585335,0.7418507169284645,0.7989138141521641,2.034094195129666,1.3165595053855192,0.06090350217036167,2.991872614824687,0.17642478154484342,1.2353834150909904,1.895911343370911,1.6046448662208936,2.710135742008352,0.20795273473527165,0.9413963888286103,0.6213366270811629,0.002538572887014201,1.943785419405089,1.2766398726208703,2.887754151383576,2.2417785696062293,2.3326502492189176,1.3034670315180346,1.6315829421538879,0.4225451194894281,1.4462694159829457,2.0348372315359784,2.164667735314218,0.4247937458561184,1.9144424412975967,1.1672183170058847,2.3477961608405824,2.4843424828644864,0.5569896973484567,0.2663636687783415,0.43325972882775265,0.8971249099662542,1.958362155683854,2.5579285610672913,2.3501824122787394,2.04960024901768,2.992544371470494,1.8767372165138505,1.4767352403911052,2.288691697581335,1.7733478895332861,2.7738271717353182,0.6126551458725109,2.1749159415859607,0.12636840347985245,0.6127054596391439,2.2039362723452904,1.3651849175166813,1.581451895658728,1.7134754400645484,0.8681095332921707,2.879782028614657,0.3044127618095249,1.1845532752346426,1.456739343294864,0.8629553276272306,1.4171615818260763,0.45829580871752507,0.7502431268095062,2.362155641284285,0.3459342686761979,2.6216827044804427,1.609203298043028,1.8108890170145893,2.9685200633829734,0.92150613837758,0.24156689279972743,1.9215284938734702,2.1203113472647637,0.6569215210501536,1.939091630296827,1.1695030853979316,1.43268729553426,2.1313920132355983,1.424217431761047,1.8609929125758367,1.9521860936726239,2.169386491082331,2.860257699480012,1.0208345441540088,1.047473397557573,2.827315806561069,1.1610513888443372,0.3115227699078329,2.2028830227610725,0.555067961894381,0.37097857399799716,1.4990909818974008,1.0664611839221145,1.7376384325612433,2.892785959841082,2.5773107668125945,0.8224127974226016,1.4598644267285352,0.5763364472388415,1.5339556370020617,0.26373254163898574,2.774890450813232,1.6771587731062176,2.7116430120603363,2.3799440162756427,2.765448902023021,0.5552454163721485,2.872801436821362,2.7954598571642824,1.2469380569925472,1.4412733389694439,2.1381497660101934,2.99882813793952,0.07018560057747458,2.8628446728302728,2.337825511196491,1.4000422967922117,2.501025589246971,1.3234653878339542,0.32671696087703617,1.1443085345736224,0.652652866943934,1.818181330330246,0.6634881699125965,0.3623743097778924,1.949959258423316,0.29324604899430406,0.3516441083359343,1.3850986774147187,2.1642577876606843,1.4954799517185415,1.1429640592632213,1.6088868933916813,0.6505490553887407,2.6625846369916415,2.420321375298478,0.4554159495903316,1.573648513236336,0.16432257337702483,0.8824916201301627,0.7854241497554642,0.19091298099656662,1.8817359526702362,2.517402263415007,1.3051227668911538,1.7229983821619326,1.8743069247268067,0.9965695146467497,1.1957716449817528,0.10774104830736264,0.4099462187033034,0.890038418844471,1.9285873134512845,0.27467916026686123,0.17159513769284018,1.9956313710902036,0.1331404976543873,2.20890575813611,0.1846460682706379,2.257743655439218,1.6865973204697058,2.2896377930982688,1.6992685087578787,1.9428752831192284,2.6575936135946163,1.6801621946263832,0.5712702248997057,0.09233174064193994,1.8078014283320867,2.2373825958903586,0.08144481833960926,0.34960907890320536,2.0693230876620445,1.2507618684312882,1.9626300452454606,2.1419173115616794,0.9635330511508466,0.752502309978399,2.937664400005045,1.6947186254507876,2.6719435326468215,0.5866980757794877,0.5926534465506239,2.9740581589309274,2.2565692327750035,2.035356227852679,0.24389204540283616,2.171103231660619,0.3628533480992855,2.1194838369226723,0.1312960619419965,2.589218957850595,2.073187665599432,1.5930961700626958,1.8402514378912123,0.6098926593044167,2.112819082651839,2.5377393981948257,1.83920625553735,1.186734398568646,0.29048118796034395,1.6518677032058369,2.6180924702747195,1.1587330162017015,0.4445464931654539,1.2859831731442908,1.7064294990510551,0.19690221927497342,1.443981277731921,0.2969631941177999,1.2186710738384443,2.112456231495993,1.9148808892573805,0.46054301551547616,0.19899882173824524,1.5551922135441345,0.5051386512519367,0.6030623185070543,1.3284218779865267,1.0036454331515563,1.9644310066394035,2.2426102319611445,2.5424981424289927,0.0671085142867176,2.282406362221187,2.6480904707684365,0.9099463496557392,1.954643436402596,2.5700616791210686,1.430289500351272,0.12823163147797478,1.805136873884199,2.672652307955767,2.281419210769801,1.271632298536164,0.34847556206887087,2.397929974729184,1.2520396163856973,0.9879090013950818,0.6200312106649042,2.201975482627733,0.6206270800564349,1.0799938283637223,2.0325738433863902,0.8196014923305588,2.6604150610977664,2.4282859692277197,1.9438590127280313,1.557176708237072,0.8764939993151464,1.0791209126725707,1.3732691748926533,2.225630090005544,2.8529449363970585,1.486727829705776,0.3514836106082835,1.3398982939145268,0.028205924107952418,2.345724376348019,2.439595254069787,0.21071834849822624,1.662749423312879,2.5946961450891814,0.5594924534176093,1.0527462562062286,1.0952795255201284,0.5582286294724579,2.1048942849366084,2.582649568997115,0.8809126659832438,2.4824990216546734,1.0010999401334506,1.7503445584397364,1.2549131249178036,2.2722783819249512,2.63150883165011,2.621212862327936,2.6540105569771812,0.8209429012025886,2.5063830878664155,0.8452585914761384,0.7893353932558365,2.5175959684844904,1.8646210363909776,1.1985720853602855,1.6663127611849051,0.17714975086262608,1.5406771490518065,0.9654348407288396,2.958949339442321,1.2152351527855565,1.589700243186232,2.1188049088087846,1.8074541979839769,2.0711372127349454,1.1819487960268822,1.1818047577065152,2.4849923728619223,0.6581459553084941,1.6015223804561525,0.3206532458506559,2.0054756523482746,2.537670019399484,2.396545666506325,2.5708700098045467,0.35166681142940215,0.6723725526402722,0.4907720758183982,1.694476992992183,1.1869204573831993,1.6184530226509668,1.0606349920008253,0.25443371518285884,2.599103790650652,2.0141748300291757,0.5090724027207367,0.11758214650241805,2.7255836189877782,2.220830356147174,2.4338103279759613,2.706635858862941,0.5145645536774375,0.7190456778095016,1.9485836618889318,1.989030236936971,0.7297759453957777,2.8069195641493616,0.7912905025575883,2.3951364740781127,1.9854783024636196,1.4586902000285116,2.516815279692968,1.9184153652058888,1.4722482171366698,2.364292173200692,2.6328532135876292,0.5287263823094834,2.522512125447582,0.12696849249539666,1.6835777310320288,1.740433580798975,1.8552795484993392,0.42784643423783764,2.2733011673690813,2.313402145037367,1.0915760913427843,0.9867693312106225,2.521981202603219,0.9902471287223649,2.0030152566587263,0.445299664408489,0.24667153237560102,0.8162064280709302,1.3993275683763569,2.7320808655079443,1.2480461036804384,1.0175377006286561,1.80012646999097,1.1748879502448328,2.248192483255669,0.1693427376948704,2.2677192223707268,2.706265415722314,1.891408429972904,0.7266872806376319,0.30872994311445123,1.7839943466961103,0.9039582159679793,0.7911997125794641,1.5572497694229086,1.8772001291106086,0.6945433048499567,0.46457278915048983,0.5087195685766597,1.6456638656657911,1.4604929396763453,1.9876584121750138,1.3169285790317933,1.3612842307731337,1.1639690854295888,2.3541720634401497,1.2025350523324088,2.0715507793511803,2.412076817254351,2.0538422428669687,2.2476327780531475,0.6755841613301492,0.4131154787469373,1.615250343267985,0.6482318870459376,0.010318476714089586,0.36966642606618083,0.7175978728529864,0.4618569016564624,1.3556736631688866,2.297881192113099,0.7986054392285848,1.8266426460435026,2.600417204653236,2.073417095049873,2.3664127606275542,2.8776986617259714,0.11234507240025704,2.525198378436426,2.4803368284474097,0.9979225355290062,1.421983285741797,2.0192180396673587,0.8581508390682773,0.7148341124755275,0.8824924740310007,1.8434595461954506,2.691727108802218,0.5056782619224476,1.1156519502062272,2.448517720495382,1.1106991628489058,1.1414918230062334,1.6559879295582187,1.0776285530755858,2.67464995368148,1.3698955386604286,2.6986510565575,1.5525384029941722,1.617607081848464,2.125667217908097,2.4115610642821963,0.5919495327550683,1.0135854114469667,2.4076531366925367,1.87325159882622,2.8309478256051688,0.8255763361536699,1.9375396885039051,2.0230403003998423,1.2022610412249182,1.3463404286216814,0.35215565334029075,2.2053554052204962,0.33474255251533047,2.312992379304905,1.130411542085217,0.6359213342427137,1.1929167394595264,1.1212132452917198,0.06114651471414101,0.30701812627654923,2.6003356808223206,2.666910745217134,0.37697855102355016,1.7549562154600862,0.12168982104996373,0.3543471843354691,2.8738980874033686,2.5411977939245616,2.5590888843103468,2.1516752581364225,2.227354097029057,2.112777144264239,1.6096329807489458,1.1761028048469204,2.803148274970531,2.3963522659728502,1.6593571549947208,2.0070869012019035,1.7039550250011537,2.379316127456611,2.8475520432520014,0.9745135633757791,0.020910063295729087,0.8889322854695472,2.9164718455678473,1.1999370635155517,0.6178489477721247,1.1572624270800071,2.5673835564028353,2.1407462916690347,2.313864080284304,1.6709343925406932,2.4094400671262974,1.1298850555404996,2.6939993036401804,0.14922955674044203,1.6450734839753793,0.07503589072217398,2.1414379641550916,0.46932250255610475,2.8906565868636287,2.834211052902887,0.5763303669551842,1.4633659232779919,0.2671592354293455,1.3098118744851075,2.0805806790085746,1.6328741944012408,1.3435286751281899,0.030307392227899133,2.6918730380988296,1.4284062852001422,1.1251204279125455,2.786793609067202,2.517562491329416,2.3815979513473238,1.1416866819161877,0.19543187817300112,0.5684844627870218,0.11980482428552852,2.6266767852987414,1.573989828653628,0.11192132042127878,0.18937714773508074,1.4062417553357733,0.9995306783805031,1.514918954907332,1.636267685712793,2.0743777900233855,2.3271109269891537,2.062512024820026,0.7861631391562567,1.9834788798139054,0.5799294119129466,0.36555683666559435,0.8259385609334107,1.5214399607374787,2.0664817798111104,2.1552308934284605,1.5097084121560327,2.940489449699983,0.5062406120219403,0.37548524754980117,1.1388210240571204,1.2866982335691872,2.7359172383200754,0.08840752730982504,1.6490127320299306,2.515643661865143,1.9616395912442868,2.813296910957979,2.1947364615385805,1.5007992704718593,0.8868848304114116,1.0965381135641439,0.5425371474510527,0.6352433498185255,2.2923240347003273,1.1149241937003223,0.6286734820795998,0.5211911886755831,0.8252664990365797,2.724335068650591,0.2709123955516386,1.694941197555866,1.2245648137935958,1.668161268439145,1.274025124197221,2.491553588400005,0.17520041697552147,0.16298266311685028,2.3721540278202653,2.3244951490570918,0.25055383570495837,2.1292829072678203,2.7168916198423565,2.138959542992673,0.39415655458160304,1.309795275529173,2.41982142526364,0.006967392231348679,2.9618003521962817,2.7861072603122157,2.1385141856752594,2.4762923961164223,0.8309185587779002,0.16234995432248134,0.4309100421371683,2.8990998849953313,1.2183700653472878,1.645505835625143,0.5555331077359775,2.0570933925670825,0.005126162716222904,2.4073316576518513,0.6262225219669151,1.238263366970136,2.0017215308610012,2.8689285503517175,0.38574817173689424,0.8507956426331202,2.621008278562786,2.8019327361426134,2.0935681817121656,1.3436545989069435,0.5089719361945597,2.8120697634919334,0.5212099604460811,2.6936129930609556,2.9847167109706763,1.7155562355733363,1.4753040029363718,0.5720292105083065,2.969720289805,2.18089770404484,2.8367791483493736,0.835415900052763,2.841725442998077,2.230154546355069,1.810578463246374,2.837718415318389,1.367959940331818,1.6939444308431806,2.7880932000102767,0.10861459753917879,2.0461336331678703,1.5165382067573114,0.885816735978536,2.0495913136130532,2.1071084300925973,0.050116603523273406,1.603147416458277,1.5532569613229972,2.1366040798247106,1.0463537297087775,0.2662574199012151,2.230122527721944,1.5721996884075429,1.4169535140609877,1.387422208188877,1.2169143466691912,1.005521884538817,2.9175836099430272,2.726028703022404,1.1649169894257965,0.7367109112777015,1.8493931104440238,2.7523251630224435,1.0914458992765705,1.9971309032755078,2.1500277509129373,2.7701386085904325,1.1837528034444964,1.0744525238276381,2.5196101280753633,2.559324533991241,2.015804425929578,2.383249165138717,0.7712080793664715,1.8199580253593695,1.0442575959427787,1.8677729610911182,2.801908108080909,1.0822273867758798,2.857592531140117,1.4714177962219133,2.790857865357225,2.0968965702517925,0.5286607881961651,1.3443416877404029,1.1597779380779156,0.2489597006173736,1.042287226229627,1.9658884540132273,1.7784043774187268,1.8674189632915639,1.677442317752055,0.9116647148398085,0.032649506699788056,0.09286036142790577,0.7529808433819631,0.34612439966743036,0.4259529519470928,1.8997033823053378,2.8746202894367423,0.34695386997318134,2.7129861888633036,1.52979606718703,0.6811971698413088,0.6878149902257376,1.8303106942073306,2.250791574786871,0.5845302024255501,2.1498492612615903,2.8496427876090706,0.7323055174846398,2.113663120236542,0.09540087840026001,2.9316869354770443,0.411909874394925,2.334863295556983,1.007594425251506,0.254979875772247,1.8994417732253848,2.6008902467432318,0.573049745347221,2.0230961855495906,2.402068648891251,0.274838579963834,2.4031064485167466,0.8553633389583333,2.273233019413718,0.6772774325181454,0.707863160253843,0.8348183604121586,2.0462236789592607,2.598396056348947,2.6103947914050396,2.2680483909217344,1.9630698919564686,2.135594808325822,1.0322181139599902,2.1015926772025306,1.5457717420612607,2.4912110259418956,0.5781538484722628,0.13631680980345617,0.9807622834351872,0.8736757946346803,0.7605630722431198,1.3486362087093582,2.4492239090106045,1.8530079126371939,0.6067572372456216,1.6057691243817416,2.982299959703921,1.3170133396461865,2.755905444809491,2.278425793751722,1.4363783252534748,1.2084180270518254,1.559127756181807,1.1325256242017236,0.6408085403594563,2.445489396916773,0.2822472704733099,0.2653664008481107,2.38856436476385,1.1197956107915898,0.9425445449736258,1.5501633993394028,0.47916003163466914,1.3045348252491766,0.5525045364325147,2.589185819598175,0.972728048261275,0.19724155694975098,2.997401361644676,2.8453174569077904,0.5576730571098469,2.4933404590783264,0.15190139899370347,2.8860367255618433,1.4098316274605158,2.8923719307775784,0.1777003365080978,2.1203586277128474,1.3509135815278621,1.9655686224309536,0.4622810074765611,0.9442631920410591,1.606867141060798,0.37144314567093106,2.3166189535863118,2.8270998032584287,0.3360849429128252,0.8386910130576453,0.020574792739067815,2.9314681203665156,2.7563370731806036,1.4530831141292775,0.0882822276524966,2.5843786381709126,2.0463141819985857,0.34598368155285564,1.5667836140708518,0.8988054114766697,2.9502652886629166,0.41923204198564057,1.9084379952024613,2.383443619831985,1.4489630109324527,1.6629324100078722,2.7590993009356497,1.7368866926868625,0.945362283283318,0.11900643400930488,0.7723750253853126,1.0840367829218862,0.6480792778870257,1.6215292321532393,2.8962235687539843,1.315095171139383,1.5753023347274064,1.0760551862471728,2.258682615834257,0.7862373292005607,1.4598663518366748,0.698736760277906,0.017921813380497253,0.6592874045112587,2.4233111263597578,2.473328743436025,2.477910339248713,1.4205133969978805,0.7494419917694057,0.12849844358369666,2.425799222737015,0.08792258321482982,2.2773316565005794,1.0922958432911984,2.3825787453759326,0.4907703749928205,2.822877122023623,0.4959060449669297,0.2635754823802725,1.8557457289953851,0.012942752366433607,1.4276324829610503,0.5318682174385487,0.0598305788893021,1.8161808958542764,0.17282927366857015,0.8700004601488691,2.250987789280666,2.9870690787014267,0.022599123807586885,1.3490648072640326,1.7503924830535038,0.4698881102320014,2.710440681221534,2.374118452812171,1.921331143497751,2.33657887655385,1.4836147713720373,2.7657647233399727,2.7449713015298025,0.43849335064516826,2.91192125374389,2.9909574515762865,0.2153702988527626,1.739204140254862,2.810416279362305,0.67529230683231,1.1791971559164527,1.8231725793736369,2.5691931180793555,1.257542115993147,2.274340479794609,0.4624743317603419,0.8265041010787348,1.5699913586039669,2.976828387597706,2.031963611472303,0.6390630709714125,2.8880051758714993,0.42480316218166636,2.7263173006377937,0.5273530173761565,0.9177877976831699,1.5484984856556587,2.3684542552785333,2.309575401751604,2.8969249861203474,2.880443692490977,0.5837615626850727,1.2758406914503027,1.6495215024264556,2.206391687539731,1.5700162674997376,1.867631259557855,2.813518014630257,0.8481817051045193,1.7125310138102965,2.9028319229810045,1.1044473723620707,2.3918386835084737,0.3203164457059844,0.04626430741436449,0.3777938976363846,1.435506281365812,0.4878382625172808,2.7654068639645892,0.8517264897751842,1.5707510645424028,1.5159188778241528,2.4475728247082147,0.33190368890604205,1.037395680914258,1.4873879428023937,2.9574736049239925,1.5721130449632224,1.863667332637758,0.39877449759036065,2.2421731108424403,1.6493906628531652,1.5699199703040427,2.3309988103181603,0.5179822026783645,2.5597198347099437,1.8790015040811925,2.4925793372463065,1.5193001460378603,0.3983603764908943,0.06902754155396318,0.8411369628438583,2.0047178887170314,0.5797264729925455,1.926652048894586,2.8468224064612713,1.3703056211417703,0.7372948677369808,1.7373313232670546,2.763530793195983,1.6146807626081159,1.8013668077055298,1.5858142150322152,1.324085713754578,2.0487986116099925,2.4149233686345726,2.0068474464709354,1.1609750809573607,2.998582009215017,0.21035920895772486,0.24788276308851054,0.4898395086092475,1.9121886061497573,2.5865992044422574,0.6787104088411475,1.2148701751508337,2.904081071909275,0.9223081986855848,0.9484651472002026,0.25891804442102484,2.2666916278536124,0.7168072845589064,1.690197172093071,1.7194770011676992,0.6475727586890523,2.2123213368332797,2.9636183324201797,2.2522666839844305,0.8923904424570606,2.700907437995429,0.97685358375593,0.7880590182587079,0.8984042744107104,2.2869723862011684,0.6120735105547086,0.41943599057281844,2.1567364608125263,0.9231394345790838,1.3352700619833378,1.6943615092680655,2.170549128323187,1.4194601457617453,1.6322637215916806,1.8896037971253172,0.845806480484234,0.9517132238290262,1.0103778505900585,2.7930124669160623,2.022639490321051,2.8539144255228246,1.113751843497363,1.6569907346050008,0.29334683385260907,0.7142960711220443,1.7608946276115272,2.530522000157781,1.9185282401639265,1.6595021259170615,0.7561673343964086,0.22146792946853977,0.9263647337175809,0.5846458219147468,2.5304650720425688,1.0339261177318746,2.7605686906946527,0.037170099940429635,2.4396352988077106,2.0266851718027423,2.96902627608044,2.1782919814206982,0.8808208599880005,1.0621862592778448,1.9321903246894137,2.300639261199416,2.777304147655351,2.477980060497477,0.02137624128240767,0.8061226130348704,1.6726569446686188,2.841327661480263,2.8880434670754846,0.8467925332642929,0.0026925074149686257,0.1128341271207689,0.9729260088556826,2.6748708861996704,0.28627130353322894,2.5626812629027462,1.3923415240184323],"lambda":[2.1772026141892376,2.3191593482818718,2.6929319117396533,0.5142516386348122,1.7568714491941122,2.024411437899217,2.3677861361072257,1.0239876471206057,2.2440599121834683,2.9169110123712176,1.0778737761199344,0.9244499922151017,2.9577742826470694,0.5020634674695579,2.884626317948296,2.565853578967977,2.511024879338241,2.7936835383144354,2.3418998880745674,0.032624089783992005,1.31855305192204,2.7777275661324268,0.4689912815278847,2.7610540634841527,1.6511642447291672,1.441580724902978,1.441528501843559,2.703937670208046,1.8307846779903612,1.4211331126388136,0.5821361820169824,1.818333569589719,1.7171929877381356,0.22858452081291802,1.7457715734127721,0.9375741633124179,1.7035429988413138,2.7304630191238823,1.8155802896479887,0.47851780749921047,1.7487557685426038,0.014770644338137018,2.4911417365465303,1.6249051751224768,2.3057769213149975,1.8273627632990306,2.415815836110143,2.7269135861531355,1.5006622421268299,0.9464554122267634,0.2409611052561531,2.9002447059343055,0.6943047145469796,0.4251222228934133,1.724387101921967,0.40070345675886165,1.930947285051712,1.2418770027655357,1.0942055124977084,1.0450970583454169,2.528676093515431,2.4588772126177885,2.3091832402717785,2.546064857391971,1.3368372220884768,0.24594323037818278,2.607381960904836,0.686305883508572,1.4467536068127254,0.6461148553538292,1.732570074727403,1.5806851724009678,0.13750534717690877,1.9970689894984626,1.9898720770560896,2.0451400773458985,1.7995520855272302,2.2542774946269057,2.716647023235289,2.7461229784965036,2.8036000099565124,1.2537236673541283,0.7082343383765008,1.1648931469487198,1.1193072094095127,1.2092291234527195,2.3679173625992913,2.4405098780799133,0.9988993374512001,0.6873569942113,0.8398869569773928,2.8560231850142004,2.4972199096636545,1.5935664091201887,0.44447463505159535,2.8594347234808026,0.24869251238893075,0.5356366441969864,2.872270093092604,1.88983543127377,1.2750481781118868,1.0467263833140394,2.4205150416243777,1.2136253952377363,2.276063244735992,1.0137556382499602,0.2488428199466397,0.4703187641618831,0.9201503437937624,1.8500755494805303,0.48869694320941615,0.46790399281359285,1.5800659530108538,1.1608673652804467,0.7060233306779364,2.1985552385564127,2.6830914342267795,2.075959760168239,1.2714367396093953,2.4482677737921223,2.282271762798375,2.8835928139952145,2.509539697553013,0.027226179656466343,0.5259847167736362,0.9925924273447944,2.4597584184750447,0.554515807427334,1.4960033091004774,0.12606491393734887,0.5945785681754141,2.7230069036021796,0.502919668226478,0.3706772490372501,1.6821556353155938,0.822233196006978,0.8255722260093723,2.079983313262966,0.8840133253842726,1.4917428980970449,0.7799839657999044,2.482525988345295,1.9391848427599785,0.4001217872696996,0.5052633001760072,1.2690771934154839,1.7077371518096978,0.3094390325957894,2.445394811525366,0.795831340133903,1.7476657098434305,2.263513237269469,2.620738598894328,0.6444051291530339,2.480420828443591,0.5169895667620381,0.7798015338053741,2.5628140337603766,0.2588674378350271,0.6383608813082564,1.3201004147521564,0.9502382824863362,2.7769828825930047,0.30444013510892476,2.5351757932972045,2.9847746534776114,0.8642794918912509,0.11309544098068147,2.4874662808784134,2.5091746490643843,2.547639165699022,0.24237339608263686,0.06953227856773303,1.2800235894297758,0.9135665741697523,2.201171237059029,2.753882769661476,2.563366978363992,0.7016035192131536,1.7809013139878216,2.85346148323087,2.115314184904104,1.0906291363188454,2.8915022477041488,2.3434959328299048,1.9562245270864502,2.446321410465734,1.3585868292380232,1.7954481536320253,0.5371581270457095,2.828056431135393,1.2252026453283134,2.9025493875106405,2.346479486060319,2.362750495908571,1.6183417750928026,2.1539011761805815,1.6843367028268141,2.945634125295781,1.9862448471681755,1.8383263480577177,2.1520638435945325,0.7507664269671082,1.6857767481258428,0.5048503400517967,0.32364454642057194,1.0885421757340192,2.3444044963095303,1.9362279540402112,0.7053270459281034,1.5216878163493313,0.5632514076492054,2.85851225439931,1.5920727133053,2.566109038416668,1.8709528719947535,2.8430771411011735,2.0087242253040727,0.8694035169397996,2.648262390979752,0.4473263366854878,2.064934391537034,0.5838770371629425,1.1883451119600106,2.4331698691753405,1.0271783517119026,1.487602512394162,0.6669960638038834,1.8309256758664472,0.963597648819265,2.8977085081183116,0.542725850171295,2.659197264533259,2.7732032415417223,0.9691971418479961,0.4969015439781146,2.3503524456958025,1.9486508948765084,2.641456677130371,2.3633594142701146,0.8712737608699266,0.5661793696420137,1.7672954756779589,2.039936869479571,1.3709779632018406,0.5237675102054895,2.2976420055503963,1.8171990069661332,1.2624652364912552,2.5926267563352323,2.4732183751987606,2.0361337321545223,2.006797650827078,1.151298510191795,1.5992813776410881,2.8378746063312956,0.35699893448155184,2.4734085816491422,1.0140648944455914,0.998719952998526,1.9164638026765994,1.6812546631846694,2.0076317993833452,2.5019385047413176,0.40768855618078415,1.086037579566405,0.7206064482196994,1.639046321330179,0.32179014276927287,0.01481385778496258,1.744467836621611,2.543482762999347,2.8792539214783557,0.8584375471101151,2.856934704645006,0.26213145109424807,1.6669187167495638,1.2032135657647836,0.7075811827289633,0.6576906150567223,0.9660822586556912,1.258783519837284,2.4148376256881896,2.96510233770952,0.07632542146812615,1.1684484832551905,0.32995093972949485,2.7771788214192004,0.7966861172254283,2.160069541574819,0.5612363587852933,1.6453333498139877,0.9182116233232094,0.7241644963544414,0.9024066667861523,0.19874350266858953,0.9754330092696781,2.4783384263142607,0.819636567275019,2.7481956869565556,2.869667576988533,0.9536466221174236,1.3505003523388113,1.108910065255387,0.3108647248386691,1.4736188096439733,1.0811478441610411,1.8867445741564632,2.0918513870414177,0.35111248374212733,0.0508657318127852,0.27614523865272544,0.7830604822874148,0.2481233611259257,1.7945233773611098,0.16120110738980342,0.787918824370389,2.090169933100445,2.674210491707262,2.101978575842148,1.5612530540881966,2.25233250290579,2.9708577304928547,1.2566936691090673,0.7382530068759998,0.4329054674344961,0.5268782875432427,0.6699212025450292,0.9918467047626534,2.851414488158344,0.013676498742046128,2.3325590269539016,1.6835561965496635,0.36757328111108345,1.4065866590038172,1.1631101223491453,0.058436705984675985,0.8554212875563401,2.448011562463507,2.7583126480719278,0.24680387601742249,2.0818791282894726,0.6175386954284681,1.829535722842723,0.09216156446937362,0.046658006841069355,2.93015443115187,0.6581933755721532,0.7624800372003153,0.7316687455428843,0.6452439735716902,0.019386245566204607,0.38518543182217213,0.9032912415647467,1.5083526010933015,2.8758675782356633,0.37071872582738985,2.4870098363626987,0.6632556670908485,2.9611902876973435,0.11019614919082299,1.3169563034603908,0.703718542791135,2.384578738564584,2.1599356455159735,2.0727303549835803,1.6596714937992825,0.8552417557036311,0.9351878358583563,2.7893537071753327,0.021377383059330013,0.45768235446126737,1.495322447766636,1.9450547193452172,0.1480671457731506,2.602145548453375,0.42477375809290185,1.0113286549245817,0.7092291358059084,2.9736722603794394,1.6389817888684286,0.7133848943803676,2.9993562189162803,0.05906427817261939,2.0409516327669257,0.7582634177665506,0.42022031693989814,0.8601758489718252,0.747322678918197,1.15940929819181,0.37244076923859404,0.6927259120594904,2.029538820664542,2.8737309851641655,0.7608567601389871,1.2045360196275752,2.1133338988067383,1.0389676640643144,0.6887413338180697,1.4394175603982682,0.4492438853822547,0.8207083863101905,2.5897705985462043,1.9152926798712977,0.6285547723300835,0.00959913297482995,0.861916742080433,1.0382057035755428,2.942546269454934,0.37836039325621496,1.2772173459498264,2.441255683916999,0.3152248775135491,0.02399668649803921,1.4648104252620269,0.28583741103276084,0.8858524409573516,2.9980406238882096,0.7866023972579554,2.469056022844157,1.5468159095673437,2.9929987265857063,1.8048138705888672,0.3302564023430037,2.6520431655286565,1.055594846294308,1.7740193271446831,0.2530612214348871,2.658430503115693,0.47110273322318386,1.70489642132473,1.9643272816756188,2.9928422239669756,0.8682655301616293,1.9252677691735154,1.6112106206621328,0.1447797058398057,0.8760209362705627,1.13183102981013,0.48750559769434965,0.8991526860464318,0.6744007588017751,1.053013213664641,1.2915946100700992,2.2615547715395268,0.3841735376572619,1.136839834113479,1.1443038344186538,2.408073340424746,0.5298007838831986,0.6604729242615313,2.780057560842558,1.0302654780450824,1.8326061607737958,0.9190795609428146,0.744577338717223,0.47865042381560285,2.5471844684648444,1.3167124866232736,2.9535073872391946,2.119445921639845,2.0382779738758003,2.8843746162624195,0.07180938634410805,1.8160080058330716,2.174754629304365,1.1286185662814692,1.9635410076747808,0.5871260828629834,2.39189118789244,1.9935499477593668,0.27230690304113936,1.570371485633347,0.8683261810827727,1.357275721713713,1.9564743359526984,1.6787974298193034,1.6531156578487247,2.723212451066664,2.0242017505362986,0.17373870397675173,1.2447024903849677,2.1426648814310063,1.3862155713994324,1.5724362393360933,1.0536392696353747,1.412853321866132,1.8935558497112177,1.3732928116339875,2.5480771080184628,2.422209091479217,1.1475434713455328,1.8382854055029405,2.3648260708097624,2.8821157046064174,1.5836937869922871,0.6733103811343686,2.8566030696961056,1.8876196021771787,1.6731973337191508,1.3390161557522238,1.750652838018832,0.41796809205630336,2.058742503288941,0.9532755097012353,0.5287700175460015,2.277360752865457,2.727370450911396,2.3396880232050443,2.3804679059252245,1.8934822003610199,0.9111284487894398,1.8162526390418585,1.2003181792082738,1.5265899642172756,2.5907435498594524,2.3714364822468497,0.7392551925104758,2.9886232689668426,2.763668446683921,1.2503138090789732,2.381934631029539,1.4063713048410247,2.456671006112985,2.0456898764632676,0.832223220750602,1.3491548716383237,0.9063724684025136,2.5868104347573118,2.096713944088302,0.6396423464022243,1.9646958887643162,2.2337736720754995,0.42347021073138547,1.8601885126980287,1.5841729015417694,1.7868941412928976,0.7527881610990461,1.544844597967676,1.9083442280673628,1.7043571208218786,2.8038399174130504,0.6678511846831583,0.906149556061743,0.8812399008236147,0.5654703808519774,2.218161584652477,1.3200538419084722,2.1485642952758663,2.989623308904421,0.11444604595523011,1.876444556949791,2.2536623771728683,0.7029556814513795,2.8515856307462295,0.48697243702487003,0.7568293188581132,0.43426777530672434,0.01864508114916963,2.7268815583602253,1.2956012957353096,1.7666264414859854,0.13067699887810913,2.9994859485183634,0.6166947043167341,1.5527243519846483,2.5220258653718703,0.048731069554611706,2.5674653903488505,0.6825069903403087,1.4083977853364202,1.6763914235975477,2.025783126387267,0.4457580961932017,2.68056797384196,1.8206227345303743,2.4339757938167605,2.967064443843281,0.37262189208124874,1.523486250000635,0.1772586194032626,2.4597323154251054,1.9807722953991709,2.614869104498538,2.189807729400383,1.5821567546031114,0.6111265808378128,1.258552831292899,0.544283285632059,1.7057558577631742,1.0925347848073421,2.382833252705753,1.1938745226599115,1.3083133171287455,1.5160838186536187,2.347127924547251,2.723802731576747,0.25134925864641944,1.0958904131645864,2.5037064093371018,2.0960036902107553,2.0616185354183583,1.0848260943540013,2.9049498840377534,0.45164912861296536,2.520213231818512,1.2667535678545505,0.8514157948499248,2.171694397810714,0.8992705518102961,2.948267020866962,2.5976927648167933,2.448514940282367,1.0934740059951302,1.3976874623711748,1.2085832746686263,0.9147857022287655,1.339126983048366,2.616185585134808,2.1951533133784302,0.7309274736900178,2.3176420241205964,2.9504005954845,1.6366715621256875,1.9901385195520573,1.9271374286635734,0.19912029549490673,1.4969014542820818,2.4474284142927316,2.8005741481508046,0.0017748621902986539,0.5179628249548873,0.5860387979715969,2.8874319699548208,2.33288795339226,0.08370091329471463,1.8103157771232656,1.4209554700780476,1.9590421980052428,2.0081741798774866,0.0666779176406116,0.7894029221692715,2.698146829949812,2.2019658792900216,2.0477361087873818,0.3825170432760796,2.2345748276953916,0.5557606698162816,0.06850112821862764,0.34683847167460446,2.091932015424195,2.5805633167196222,2.184103145984941,0.2355032774279997,1.598727142020704,1.1183869963588922,0.5642665002390965,1.8487972680408127,0.80957425312425,2.540965778916074,1.9102359914198739,1.3623683493703687,1.1606214228565341,1.7252879551963134,0.9960574113773211,0.9021332330016278,1.5924550941867366,2.831920604230519,1.1095720293350602,0.8073381760377434,1.9170486138250782,0.013499274684599438,2.20830610347475,1.7414115279035451,0.8263219795865124,0.5359944739282201,2.159741303112832,1.0960630689331012,1.216502307114035,2.742193368625947,2.2930058313505017,1.1084304935252394,0.18494136403489292,2.759111296519424,1.8698199320000497,1.076019568102928,0.46978842283460853,2.906672859823809,2.93579467173724,2.8934570008282297,2.1144066359148344,0.5070905882302079,0.7018631129320585,2.574489733173457,0.598869701115448,0.9469375476653705,0.7406213571509401,1.8020165792028286,2.836934392556481,1.3771206467545676,2.549436984650807,0.07092915787538367,1.5059254390969004,0.4933271459406876,1.5267978920724892,2.2616927921239367,2.7871980828532967,0.8691121009325489,0.3021709489723925,2.471467481902332,0.30909520079284825,1.8444332812332906,0.5782205916199155,2.1346144372480778,1.9220582033458784,1.4392713068824534,1.6827881432349907,2.449890234523582,1.5110847593348842,2.7068004104022325,2.069523750512039,2.394160046034326,0.542792084877243,1.7336885962453317,2.965225376575333,1.2617341003604436,1.0721215240880417,0.223064169059227,2.1511653941955955,1.1987176093473761,1.670127708162132,2.7775929193262003,1.385148181669281,1.7942148883998272,2.792211410743783,2.7476899361891007,2.2465918992010034,2.041992348590287,1.130193713933564,0.20788758758774373,2.798609689504839,0.5264634065578182,1.1951609311914593,0.6486731227168974,0.8648656292074965,2.6348093535061903,0.5136774135664872,1.2328085652050866,1.5132875781077944,2.8239140674813887,0.6951877994480926,1.9576150848069565,1.1218200445033548,1.3192638357293804,1.9604842949711758,0.11494937543193107,2.730242769576782,1.7281814885235698,1.4947831599927026,2.5329007995734836,0.24852188148822063,2.377402964290928,0.930828719191948,1.0103165239413419,0.6101922298813216,2.714868664481937,2.2788128596666795,1.4490344758707752,1.299670791978384,2.548545508133548,2.9657452513675207,2.9837505962284396,2.9455437693038435,2.922603044971524,1.8618157402002846,0.20099739699492436,1.5773972823699045,2.605814002772897,0.6470553959049199,1.186387585448092,2.0712340257348427,2.7948098666625416,2.5065218846638713,1.4464922388781247,0.6415395046346255,1.2511536693854572,0.2331872462054272,1.104270669976665,0.5885506646813135,0.6981917980006513,0.9323207812410692,1.5549770691066938,1.2204151301780166,0.869520130379261,2.2725874367862455,1.4597666044924784,0.30802113090514305,2.6332703464507334,0.14915491982600249,2.831837007625543,2.1318386914984,2.25473658861659,0.10538252240490387,0.4066878175193769,2.34776338940189,2.3324791749050724,0.6961786455202887,0.29239986858731837,1.2548581580534655,1.2830258155562073,2.7649660221346393,1.749476695035325,1.8398000382585755,0.06522088097185308,1.0856206920399518,2.6017623964863184,2.0682040683374483,0.5583573668006363,2.2081205095983654,0.13003947154690265,2.1681883599136906,0.07626521634675254,1.1927300038419948,0.08798528084476032,0.09474218355789965,0.12967045472356364,2.6580550459636765,2.239485468640644,0.29762757133650775,0.5493757352366828,2.7562416482235155,2.052838275507152,2.627330065145764,0.5591157124723636,0.32783764392025616,1.9509786397998543,2.3449392608155684,0.24137612585405588,0.7650843220383674,1.5088742353265996,2.381894374150466,1.5765024872674736,2.100410925127597,0.6729350554205895,1.0202887360054425,1.9914351632125522,0.3746815110567703,0.4547062055465858,2.589813083245467,2.886704381114175,2.7428836389656617,0.29193873208108423,1.0506493767224023,2.225223513712565,0.09530412013493672,1.4513471243872824,0.801064085535538,1.6417775062145374,1.946257243457846,0.2695396709343958,1.4526126354308428,2.401729167061234,1.1973587884328045,0.5760796512680124,0.024868149251390026,1.7251770314459152,0.326105181106757,0.47939987558546315,2.071194146717475,0.9240973634303769,0.5792585021243397,1.7668289543301594,1.8143126882389702,1.2319021052216572,1.7177727648174421,2.5423433746916206,0.9471211791184999,1.7494498814081951,0.7077643716062441,0.08673235518588363,1.1968290361987801,0.7386728658712847,2.1599325550988646,2.4288887451095014,1.6703395882421164,2.2506207258139277,2.835432500611576,2.755960264721518,2.5509737570450164,2.8277884739498678,1.886552854252624,0.9379663547749766,0.05132481892105467,1.745064053908393,2.195568722664574,1.7155624782973213,2.5230858847694284,2.569138286223847,0.9582422654107063,2.5102633596070456,2.7311747438123133,1.2781849010583968,2.4285502399058876,0.22359105398715418,0.5718857879914396,2.0480769967488937,2.8297093151448927,0.24717676274723943,2.1471927324082127,1.5265163858104775,2.292797719799773,0.22902583505772456,1.0454799678889581,0.46504893389319624,1.6353106343139765,2.464286453129252,2.406134615161612,0.3185459158061461,1.6901492620415437,2.652720344162202,1.7733016855849202,1.329642359993848,1.7917569358444883,0.049286362317801036,1.6750210477687046,1.2301925489938137,0.4113469798464444,2.0410212722389054,0.9102331279504778,0.8764039284277305,0.8324451682626977,2.357351997545651,0.15259568168199267,1.4553492434851432,0.8073990291172408,0.7485559677448395,1.6384139211467588,2.644641116610126,1.8229008946151004,1.4649473433733435,0.5723259185990732,0.15753187753559317,2.8345804907921677,0.0452392212306203,0.4706437685091245,1.854716737934526,0.6726911731394307,0.09227213975354998,0.4323471119541036,0.027231934066352936,2.9433053821485347,1.6272015111239506,0.8561057712022271,0.9092564866534139,2.446503667782733,1.6377443165690047,0.24838699963981759,0.9768244212449366,1.082606529237881,2.542827769132236,1.5803311541078566,2.8175301739866008,0.9691068551874389,1.1066634358727327,0.2765517548746268,0.6723514732829312,2.703555674678861,0.3628727053777949,1.532735397015176,1.9416964399496088,0.5031274817526521,0.1870314506731352,2.414768823749125,0.6220923462415064,2.366388675684767,1.2087148380528712,0.3643618118992775,0.8821919405324994,0.3848827962080972,0.9820790281000451,0.3286534490889945,0.37083435394742925,2.1094061255081495,0.5967386756364257,0.972606446916576,1.966504160588098,1.6001823493654643,2.2202864166487095,0.49471494623364554,2.9630237542861764,0.2806137435014553,2.007740711688747,2.819758349877357,2.126464461620571,1.0440764783859298,2.501675969769064,0.3956107426547668,1.4331851782757041,1.9329174927201853,0.5602173378925885]} \ No newline at end of file +{"expected":[1.3734506397542101e17,12.815474725749572,26.944846317169546,30.48908229294519,121.17677558270967,1.1355596948849196,2.8759848309303378e19,1.218441984975502,238.6090549480614,1.4734073131050684e7,72.65523297498865,429874.99782932026,1.9812030222331398,2.1924193822417664,11.999423889057805,1.0065431947360035,3.3646758303525015e6,1367.1508496176589,1.7474414764177635e17,1.3157019416749447,213079.7880864827,1719.8241253909591,6.8790014922350995,4.271106141275182,213.0926341259377,14588.12372639995,67281.81106345334,4.183409246938189,39644.71432979606,23.22032608750913,246.76978487861754,4.800316578021353e8,3.596688141028876,1.0722574565219134,2.5771685159549422,3.903468655208026,31909.977946848456,1.3244898777077723e14,3.0258460806408558e7,25.459159747419836,2.4081253691126906e14,1.0851448973988997,4521.681056155769,1.7939906068316335e6,78944.25018354943,8.31646597132254e11,7.707148906190395,1.7342954011675715e9,1.2240186026746986,2.225874405339448,6.974726489498391,4714.558557955141,14.605696527406295,6.913979318442708,10.84601200764698,842.16977191876,1.9879147411651898,16.74499900414346,36.6737497738803,4.186834231491588,2705.682925690175,4.176752229941563,13.204351014714339,4.269614801043888e10,1.737639894415913,23.0566518474711,33741.0189511495,33.48374213385361,3.987290774209302e11,2.6581188373385456,1.6054626836567674,10072.812478029684,2.741286492217376,6.391494332419045,139327.0971307971,93.7857220895562,311.21059156662074,1.8654379162026327e7,5270.861600482986,2.992956408316243e6,2.2865825825758476e7,16647.40738990891,116053.43155003726,7.911200407806339,7.934425303482313,2.2391738123848295e8,180.1026322820485,2.440037444540616,3109.473973029314,1.6653906176601398,1.4582497661006786,20581.64087076241,116.44342787178545,1744.3078218593964,1949.6537218102421,1.267185702601398e15,1.3734527747192744,5.873674388600522,9.383521238594797,965.2144654464863,1.4692969350149,6.848146764038406e6,37423.19913714468,2.555332663638334e7,4.913253947248742e9,3.580233177355988e6,1.20289732046614,2560.537292963985,1.3872769661062919e6,98.25642765592507,4.8383430400012655,33.17064769832011,1.2039789849384332e13,1.0880678219863544,115536.50608246846,8.627114031159086e8,3633.0982648177032,1.2392512724048187e10,33.26843126904796,2.5754717870959905,132.24761040873827,14.22100206908587,421190.7848803087,1.0259662907808935,1.2582436128872303,396.92423019016326,2.3122437739860593,1.2632330981558761,88.31051789982492,2.642500242800286,7.831235094297345,335.78766394853676,7.465507876292508,1.4046106097381188,5.503581448686852e9,4570.865233237074,1.6099676848814009,2847.817706159069,1.1710255017349565,8.278582503276187,2.5364964090921185,1.6857483314131567,48598.74045973996,95.57668099621449,3.889261995575626,343.5740054183052,12337.425130776777,1.6969336438010334,281.2782413292219,1.0947578691224054,2.424454230765061,25.755462219436506,4.922750199567319e6,1.2259325753300985,1.5909439949047872,26.74702623518699,1.117452924522014,1.0515407366140182e9,1.0538987847565353,236.35166621064207,333.57109865109487,4582.075637714987,245968.79306154477,6.172988434388024,3.995336054906167e14,457164.50147475675,1.9463190961288777,1.0109996184863521,320835.9190375464,1.3171337660091915e9,1.2413204880244266,1.1067595220039594,1.6178948948227485,24.31522856837332,267.52726539267104,1.5301344416325733e7,86.82363476284104,17.758728055519526,278970.20237075596,2741.632185801218,4.8999839373472584e16,5.409240683274516,2.4159213668874533,2.0941678542601043e23,5.037137142271881e8,450733.83558982034,1.9653886237357177,38308.87955794188,2.1932270218468073,51.19647985919251,1.4870456962189178,3.5901984620865956e6,5.768433977955838e8,9855.1379012045,273249.2201621852,3.8953578540180143,6.33848044537575e6,3.3320674860185975e8,5.879297698353156e6,91.96583008244784,1.8582700561980876,8731.022391618679,13931.411410537978,39.84232089065104,1.3265830061219637,2.333510469561804,135.43811373671315,1.6656259005444047,527.7391037284052,1.2761885578645114,37.551353823283904,59.97977217461,1.5244430644129405e7,2.5376998246128606,1.7594605273548636,1085.5845412868657,6.478660253237068,5.273190706892436,11.163676160302467,97.19813262320076,15.525634129127445,3.540537592453311e7,932.630857480099,1.0859822081877852,1.9921226746179357e9,717700.8435151645,9.096444841609674,56.99311278832858,3.9347112530692124e9,21.416313272625747,1.486543670406052,15.76013270566948,3.6793398516996305e15,3.86581921200224e10,12.032471107117443,1.2301808529307456,1.6137662325564732e10,129.89098977620074,85.83901916956411,7.61479293539911,1104.9250400529356,1.6273737802278756,31.087047533511118,753397.0860257479,5.700689029382744,1061.3243886074758,2.0760272748224873e10,52951.385749701876,113.11931771695691,37.9420585902792,121.90203914356671,404.642922303025,1.5788214106057923e7,1.4771563515599403e8,238.34064864440143,3.3043516780555464,2.735343081692089,1.0733214300604883,14380.341830753538,34717.45878371484,1.5675823757171496,1319.9257100767234,6.38378382940054e10,6.526781253146248,2.139446123944354,8.681850658187729,1.7137890827699394,134773.88001828975,51.22284878277003,1.0211541202593346,2.0505862436674482e8,79.6808496113235,886838.6677112292,8.60687265900205,6.257040714607853e10,29.374042403925383,1.7056344068862445e9,8.004832684342989e6,2.4608266306964572,1645.7116702873614,3.6093130329259226,4.540208104258872,9.004311938913148e11,1.0534385871799674e7,1.1932996836887175,150.76184313675748,1.0660366898416467,26529.099954948862,3.6522933172812575,1.400978801251063e17,3.7838426264852645,614.3409917392016,830.8082054045386,40.02698384792635,521.7266814952237,1.567220875554104,9.067759875434373,6.929836260260043e11,2.145242309353878,53340.16734151926,2.9588885934244207,460.168187238429,6.807584058372242e6,64385.854960557816,42.70749597735309,1.8608517364665487,2.8198687707405568,3.304872605096315,10891.79648730732,2.2243706498793965,1.2284658251018454,1.6844155565904009,1.2546754615073947,21.967233940271534,115220.71843667052,1.1129306734074798,1.1033067436747048,8.898856562920602e12,3.4740403282601886e9,3.133127738300984e9,3.0077074384337068e9,4.552228056536692,22.79974145055292,1926.9851994567412,105.34355012075385,1.592343808487772,3632.2599746677647,2.243611678922997,19700.694519304154,6.025502364528457e7,1.046171036521257,3.446160535118595e11,17707.224690701973,3.4373043120542315,770336.4713967377,3.3341200407800637e6,1.0415572380548852,18088.046368847772,1.3929375341482428,178905.51166422214,3.1897175332803522,75250.99868481925,1.3905997036384292,8.350485054216914e6,2.3151566625167,1.0967317114061985,138.3993160474305,1878.9149797552145,3.6329307704320364,108.96195333973876,1.436133880007056,1.005438204196019,1.625908268682711,15.756816484432548,2.570130549989876e9,1264.336765715355,1.9248117842833936,285051.6990226359,4.411524642425972,7.824138960296284e10,1.0205422056784628,89442.46753371111,18643.19731072771,674734.1052833247,10.047077033866968,2.1163551651060355,3719.4519034163973,3.5136534109789768,3.0890861358261983,34483.12906468146,1.1256129103151888,1.582429318966362,2.4211322822437533,3.6323615793430415,1.8581468030523411,5475.903091248452,14.518230905803012,15.845580278015692,7.827284628828203,699.1523458261954,6.067914120800691e6,5.265353623545476,1.0872320765508049e9,1.8219771808514573,1.0602237852474789e6,613.3461450986676,1.5001851103736632,1.5527022117171199,20.309175207166255,2.8793461144542523,1.0038703875192114,1.3631836584366968,8.414945581992368,5.402881129058966,8.942281587678597,48257.04224788933,13.242385484086778,225.00677773592508,5367.733966096213,22175.822953285744,76.65276968348903,951702.1379386752,1.3605933112601925,3.63245296358055e9,972.346806188184,1.016575742594693,15.044549304957973,881.8383380004971,54.5063259316606,1.4843108499729758,6.1086761737023805,435162.3690755635,76.44665076390216,1.0159178137204046,20.189084213161742,20.524912104772902,6.074024207386774,595.9358387543493,28.045255997932763,119.61776822275125,1.1852994335305855e9,6530.707483953929,7.302960079205127e10,3.420174403471268,45113.70147365856,2413.1583540935903,6.623376511670342e7,1.2267264003536986,106.35428539784814,116.96109605106419,12004.108030183794,4.137377759622704e13,46.54427419143681,173.97837901313108,306268.7235555417,42.534092997731854,1.509316918655756,1.4474372808394746,9300.378511977688,1.213881087070906,3591.912989989205,4.113078161077718,2.5494499375109356,19.42154617371485,107.57576496942735,1.024519713143606,1.5046211490140935,1.5713973216496059e6,1.0212065652976716e14,1.2745351132484493,23.55105159526597,1.4329708668972072,1.549791362930626,1.977304531660597e13,46560.78181826059,7175.06773388992,37.992369472409514,1.4267934335154781e9,14386.608301560247,135524.87861785034,115.7225753481685,5.220377323485701e13,3.202097585785462e12,1.357460661941753,120332.13351797656,17622.17966451005,63427.87433535745,7.13581475170073e13,2.634481394761198,1.0518401605241583,17.3887271472349,116.60960886158807,38.21076681968275,2.1008905042269777,19.3077550080724,1.671678708750287e10,296763.0544617863,3.49048446663676e6,127576.6228817277,8.003550503196021e8,1.4391243331958155,2.8497630412463106e7,1.411763072335203,329.0826115695073,1.1303515536276534,2736.920627492227,2.3307096359836583,9.646090762182934e13,3.5705629099064846e9,7.2879096990576295,3111.5949934189903,1.421103080606297,144.52291270029286,1.5797237931761032e7,142940.233046118,88.7551540674868,1.0209347816528478,1.1745640891497936e17,398.4627511234465,32.49980161606046,7.178299461739459e8,4.636006492271207e8,60.66450871920166,80.58682036323951,1.2284474552903324,1.4990335766178013,1.3362340124414058,1.563966334033566e15,7718.139831254347,1.325654869483892,1.4840646261667267,16.557080222803467,22.61282826862072,70.80942794708923,552.2065404647224,6.769474199168772e7,3.348351171992742e9,160.0533547067096,35.562111048577805,3.335199716055502e7,2.6714918966128955,2.861044383311307,6.08492098790658,6581.171226202397,1.341238940218263e6,572.3584264622724,116.31772886094853,1.1373804494071437e7,5.5003841996306955,2.599885869655963,3.8884651977266556,172.27603022905836,9.83637108328111e13,1.0399188886330235,2480.5054391153735,6.693868105902686e7,55252.46850132113,132224.08961501383,225078.83880046633,773.634715883533,11.393745608620588,267.80281679919455,1.6178488367157935,2.234887475121256,2543.247051911785,3.18623312457901,6.966834745600427,2.466893511094047,15.729060680578055,3.140737504469155e18,1.0362527225403277,4201.864588677886,224.71674460394226,20.581712434800735,1546.0277105563403,220.44951161460105,1.1559487691293486,1.0799043449503412,1.1987013447153287,8.332284293413654e10,1.4461506551637615,483421.0745590229,6.3400418851298515,5.724071739606094e9,1.3470882226880934,66.73728706916998,1.660007027055133e11,1.0003407720909274,2.7648586319812634e20,32410.286775452863,37964.94381920682,8.58197369795679e7,13.79426120711426,1.0817440359284805,4.237218543194271,3.6849739471537414e13,329.28722042404786,246004.1547268995,1.3189151969560933,32697.30634991416,1.0009114045481078,6.2214404496155014e10,5.608730112341853,605.1214753462159,1.2252847732968328e6,2.622301621923043e11,1.3333118959500496,5.410600557430387,1032.1334973855942,2.91720923973073e11,2373.4277409144943,854.5959861940629,2.20831838547242,7.744691982743491e8,2.8210198400399484,1.1263266407800198e14,1.646395735593241e22,3.145881394433536,40.27545534878423,6.906811001410235,6.7284460943418136e16,1.0772098031722559e7,3.687688951253474e7,44.39845190594701,1468.535908900833,1.2187051729619846e9,650.7700593077066,880289.8691322934,576.6683454442735,54.2482271222045,3.3600950228663108e19,1.3472158998440813,1.4620151038635338e7,48.85504769058569,7.327647408240236,3553.669655436921,741.5933396260219,1.071246229203274,32296.530307416586,3572.3744946674888,235.21117343962086,72.33188041725583,2.459803728961563,794938.3704464756,1991.856406843054,412.1593956408643,1.8189505287538539,35.08465156206409,69.56136955489418,1.9080211012006036e21,1.0256545966535267,3.1344327314996754,1.8931221211219103,5.204181418905549e6,7.451221497852346e14,1.1801113036563378,101507.25132062593,47958.17515174837,5.35434211938892e12,94.79797317046226,1.1372135077565668,8249.791845313603,9.463230294914461e13,1.6688935269225787e6,5.636027683268602e8,1.5599113816672152,104435.5928766902,2.782404968496889,1.4549416209330817,214.3673700322658,59.256386425393785,2.522194665048566e18,1523.1753167157412,36.672271082446024,90789.27054610617,2.1795837550805617,4.953370772959694,57.2503172796267,1.2571645414921424,106.10608489650613,124398.48495026998,815.1728331995153,572.7349559219576,1822.9194586385063,4.404352577935636,1.0303930317128724,1.1676105706976028,24.074488320783793,1.582324682923751,1.535315537194113,53978.16106070501,1.2531874358556854,2.499018821675209,4.4068624891508484e10,19.865824338393864,1.6875207365540985,8.47203125095087,310.68921186183354,30775.988892791684,8.826045875557654,3.564635468114576e7,6.882174222978123e7,1.2210518740808864,5.267422498915092e8,1.2058305115075314,1.9909644968371847e8,1.270550653956383,5.960460645413069e11,164.90330586764395,2.3172081314043425,165116.02009330638,559.0981116755484,1.7211782133012348,2.1704545334295098e7,410.03677570608266,1.3492293254010312,1717.7644249050593,11.435686535267255,5.39763858768349e10,3.7952737031084425,13.804943255205677,1.0969347182237197,25536.467302668134,463.1520555932151,2.278966867116501e8,3.2116180784465647e8,2.5670953548846602e7,655.4896871311479,1.726522499099334,5.078571161147847e7,3.130062709175756,7.448868439162003e8,1.572393215681713,1.3658126270388777,24.60838155695698,7.454307878392566,6.803957183942534,1083.0100136779029,8.765240520389503e6,2.10498760697723e6,5.623541673288052,13805.223587567576,26061.268181098258,114.07818716815136,9.458370336157395e18,63223.63641696651,31.08167796983007,1.688424171988366,3219.3054242485473,12.447058459728211,4.480790736818613,5.125544289064956e12,1.5709899236095068,1.7250868711228318,1.0058504273445273e12,290.5739408352024,33.76060277383162,1959.3457067371298,2.0032079645240146,1.7478398784356919,7.879409609883982,655.5419270799176,7.143621577416825,1.151926248732425,1.4095156711343912e7,3.5109160176912456e18,1.4674311657154977,878691.4569957493,1.2817777081346242,5.66871553714713e20,8.600247923285082,3.0459593470215825e14,1.2437827590316022,15925.023163953498,272.8302816872662,2.025204860257562,4.9755712014653195,15.102074397073542,387.58825863865815,3.1247777263360605,9.697033632272982,2.587664502995382e16,1.4503818689402401,3.769287296242606,1.0127654140039655,8.59503936341095e20,3.889338588011794e14,115.28881909117887,1.1274459761183262,3.6654360612846164e13,4.789536576200266e8,3.4329552638099443,70769.52953888716,70.61611611440814,4.407009663266225e14,1.1103531056325229,8589.37002845174,1.374982988014769e11,8.236346277081777,159.4160373256979,1.9954504598564344e13,478631.2116381765,51.65711159807162,1.2005785779656997,2.111356338788603,11.565141362602187,1.2369334847709945,88.61032370237874,23565.442341282283,6.703610772125056,35.617670582075064,20.20448774736514,34875.32234704203,2.8269038619675317,1829.456745301977,4.375983354398044,1.0055856025664056,11.680627190027169,4.635682934991475,2.2828594394516254e13,1.278924196379417e10,1185.7971125573636,1.1247804097467262,1.05734906306643,3.262722437932545e10,1.2390726079497711,442.3051813759405,1.784746549406613,228381.25862924414,2.254418469403566,1.0070182426437933e19,3.074487688613943,1.7416600061873255,1.4218549180134876,1.014242716723642,3806.673041139601,4.272098710683382,1.0350259022162143,86520.65359503307,1.0248370829994076,20.228375577325384,1.9117787888411577,5.65669479529595e9,1.0020130518801358,1.3104585544142529,1.8530342304583058,4.9250861483309984,4.479843401141096e13,18.162351319179017,24.603404142922855,1.5384830220057056e11,1094.2514295036492,9.803149203185011e16,3439.4083799873656,1.1977345184657697,5.448963163611246e14,1.7884147434557809e19,1.0597232365331328,36.24843024096375,1.712556985327617e10,9.950197179493482,34.810155754606896,54405.516802100436,3335.6559654504626,13.037490252890745,3.491099802546151e7,1.2464657105563897,1.7939877696778044,19118.270455204976,2.2406783042445057e23,7.882326065553834e7,1.2984860353112349,5.4643250412955955e7,3.247180714305376,3.8985769488190027,2.7397735046635336,3.335412926496413,437.81764307831804,1.5231520065780258e8,11.527836800928473,6.299523391714647e10,3.519684514926799e17,2.5837178316277063,4.4250046160419885,1.1102196264187407,1.1375696253995677e6,3.460431172768818,13.787045103061383,1.2413768262457019e14,3.4350669992531366,13.895371254209765,1.650758272171313e13,38.87993147999513,206322.69743018065,1.9128006988149187,1.127928767992398,1.544634832580054,270.7888069170864,1.5605465999341472,3.6366198556858875,4.993648821359861,16.685422223969525,2154.995024439766,1.3788444111814746e11,1.9299165536232545,60.35913554523203,16528.355682248053,6.958756545152334e21,16925.834806934563,4.895953539837953e6,2.5203715677469214,2675.3343539622433,1.2408041577445283,766.7598688206652,7.186669396934054e8,3.2035011210294844,1.1880854895960486e13,1.5455939348178012e6,41325.365983725875,7779.1025991705465,3.806020399567059,1.0956484748166802,24.61270716034892,4.205313116638352,1.567128340947225,165216.00542216323,8.893956314237493e19,2.0664823499107747,10.3919046810544,1270.7885978566073,6.202713745039662e14,2.514622887105868,197.9384145529482,6.08549831263002,91.04998616406067,1.7108114551080815e7,4.4372956227535706e10,7.778630039710777,40.71407222909562,9.014246349075916e21,1.5146246829289445,1.4535971859305785,3.1033669003879187,1.3288023685883386,8.637761014775368e8,3.303318927880926,2.6507253840589144,1.9458745081432818e15,3.9712631508293286,3.9998092506703036,1.2789130574603296,7.130327844193867e8,1.1733966258016562,622.3130097011272,40.414404793818065,1.9775473719789243,616376.2740211635,1.2489234856109385e21,5.452302043624476e6,8.255891639419394,2839.7222002443555,1.2980800987064933,29.934539818542795,1.0680706525410808,64.25659240400978,4.786729540579551,1.4198364024617784,2.024302850939521,1.926969606555039,1.0792617635309258,478114.02693641075,306238.5224410254,14.64055426270998,42.18193003814103,928560.7888776956,8.828315022400629,1.4843410510275459,5.50776699352358,1.6135129744655376e7,1.747875208499079e7,1.6800211562026306e11,318.621030836061,61.09393913804072,1.458298255303029,1.3342560251092954,25.51195439301362,3.742155233289083e13,8.236922703622898,681.5598501268994,8.973758174749415,1.1328413418775012,1.3301362359848028,6.8085865146445155,1327.4041363263389,72.82773578392404,5.9391010489325136e7,1.013893851647923,10255.21374981057,12.628421249721196,7.56702682555738e7,13.114965891878695,1.6886751181228326,54.18738776756967,33.90333391648294,6213.944369971445,7.502663629068549e12,3.8626910241506144e7,1.0491415779863948,1.8460627746706784,369140.17986736237,92.63677326036708,6.118737586374169e14,42.79211566580878,1.0057497027101505,1.1328210216484025,61.37141234055165,209.53473589132267,1.6080695720298654,1.118771323627239e10,5.4425296972132],"x":[2.9509837829585335,0.7418507169284645,0.7989138141521641,2.034094195129666,1.3165595053855192,0.06090350217036167,2.991872614824687,0.17642478154484342,1.2353834150909904,1.895911343370911,1.6046448662208936,2.710135742008352,0.20795273473527165,0.9413963888286103,0.6213366270811629,0.002538572887014201,1.943785419405089,1.2766398726208703,2.887754151383576,2.2417785696062293,2.3326502492189176,1.3034670315180346,1.6315829421538879,0.4225451194894281,1.4462694159829457,2.0348372315359784,2.164667735314218,0.4247937458561184,1.9144424412975967,1.1672183170058847,2.3477961608405824,2.4843424828644864,0.5569896973484567,0.2663636687783415,0.43325972882775265,0.8971249099662542,1.958362155683854,2.5579285610672913,2.3501824122787394,2.04960024901768,2.992544371470494,1.8767372165138505,1.4767352403911052,2.288691697581335,1.7733478895332861,2.7738271717353182,0.6126551458725109,2.1749159415859607,0.12636840347985245,0.6127054596391439,2.2039362723452904,1.3651849175166813,1.581451895658728,1.7134754400645484,0.8681095332921707,2.879782028614657,0.3044127618095249,1.1845532752346426,1.456739343294864,0.8629553276272306,1.4171615818260763,0.45829580871752507,0.7502431268095062,2.362155641284285,0.3459342686761979,2.6216827044804427,1.609203298043028,1.8108890170145893,2.9685200633829734,0.92150613837758,0.24156689279972743,1.9215284938734702,2.1203113472647637,0.6569215210501536,1.939091630296827,1.1695030853979316,1.43268729553426,2.1313920132355983,1.424217431761047,1.8609929125758367,1.9521860936726239,2.169386491082331,2.860257699480012,1.0208345441540088,1.047473397557573,2.827315806561069,1.1610513888443372,0.3115227699078329,2.2028830227610725,0.555067961894381,0.37097857399799716,1.4990909818974008,1.0664611839221145,1.7376384325612433,2.892785959841082,2.5773107668125945,0.8224127974226016,1.4598644267285352,0.5763364472388415,1.5339556370020617,0.26373254163898574,2.774890450813232,1.6771587731062176,2.7116430120603363,2.3799440162756427,2.765448902023021,0.5552454163721485,2.872801436821362,2.7954598571642824,1.2469380569925472,1.4412733389694439,2.1381497660101934,2.99882813793952,0.07018560057747458,2.8628446728302728,2.337825511196491,1.4000422967922117,2.501025589246971,1.3234653878339542,0.32671696087703617,1.1443085345736224,0.652652866943934,1.818181330330246,0.6634881699125965,0.3623743097778924,1.949959258423316,0.29324604899430406,0.3516441083359343,1.3850986774147187,2.1642577876606843,1.4954799517185415,1.1429640592632213,1.6088868933916813,0.6505490553887407,2.6625846369916415,2.420321375298478,0.4554159495903316,1.573648513236336,0.16432257337702483,0.8824916201301627,0.7854241497554642,0.19091298099656662,1.8817359526702362,2.517402263415007,1.3051227668911538,1.7229983821619326,1.8743069247268067,0.9965695146467497,1.1957716449817528,0.10774104830736264,0.4099462187033034,0.890038418844471,1.9285873134512845,0.27467916026686123,0.17159513769284018,1.9956313710902036,0.1331404976543873,2.20890575813611,0.1846460682706379,2.257743655439218,1.6865973204697058,2.2896377930982688,1.6992685087578787,1.9428752831192284,2.6575936135946163,1.6801621946263832,0.5712702248997057,0.09233174064193994,1.8078014283320867,2.2373825958903586,0.08144481833960926,0.34960907890320536,2.0693230876620445,1.2507618684312882,1.9626300452454606,2.1419173115616794,0.9635330511508466,0.752502309978399,2.937664400005045,1.6947186254507876,2.6719435326468215,0.5866980757794877,0.5926534465506239,2.9740581589309274,2.2565692327750035,2.035356227852679,0.24389204540283616,2.171103231660619,0.3628533480992855,2.1194838369226723,0.1312960619419965,2.589218957850595,2.073187665599432,1.5930961700626958,1.8402514378912123,0.6098926593044167,2.112819082651839,2.5377393981948257,1.83920625553735,1.186734398568646,0.29048118796034395,1.6518677032058369,2.6180924702747195,1.1587330162017015,0.4445464931654539,1.2859831731442908,1.7064294990510551,0.19690221927497342,1.443981277731921,0.2969631941177999,1.2186710738384443,2.112456231495993,1.9148808892573805,0.46054301551547616,0.19899882173824524,1.5551922135441345,0.5051386512519367,0.6030623185070543,1.3284218779865267,1.0036454331515563,1.9644310066394035,2.2426102319611445,2.5424981424289927,0.0671085142867176,2.282406362221187,2.6480904707684365,0.9099463496557392,1.954643436402596,2.5700616791210686,1.430289500351272,0.12823163147797478,1.805136873884199,2.672652307955767,2.281419210769801,1.271632298536164,0.34847556206887087,2.397929974729184,1.2520396163856973,0.9879090013950818,0.6200312106649042,2.201975482627733,0.6206270800564349,1.0799938283637223,2.0325738433863902,0.8196014923305588,2.6604150610977664,2.4282859692277197,1.9438590127280313,1.557176708237072,0.8764939993151464,1.0791209126725707,1.3732691748926533,2.225630090005544,2.8529449363970585,1.486727829705776,0.3514836106082835,1.3398982939145268,0.028205924107952418,2.345724376348019,2.439595254069787,0.21071834849822624,1.662749423312879,2.5946961450891814,0.5594924534176093,1.0527462562062286,1.0952795255201284,0.5582286294724579,2.1048942849366084,2.582649568997115,0.8809126659832438,2.4824990216546734,1.0010999401334506,1.7503445584397364,1.2549131249178036,2.2722783819249512,2.63150883165011,2.621212862327936,2.6540105569771812,0.8209429012025886,2.5063830878664155,0.8452585914761384,0.7893353932558365,2.5175959684844904,1.8646210363909776,1.1985720853602855,1.6663127611849051,0.17714975086262608,1.5406771490518065,0.9654348407288396,2.958949339442321,1.2152351527855565,1.589700243186232,2.1188049088087846,1.8074541979839769,2.0711372127349454,1.1819487960268822,1.1818047577065152,2.4849923728619223,0.6581459553084941,1.6015223804561525,0.3206532458506559,2.0054756523482746,2.537670019399484,2.396545666506325,2.5708700098045467,0.35166681142940215,0.6723725526402722,0.4907720758183982,1.694476992992183,1.1869204573831993,1.6184530226509668,1.0606349920008253,0.25443371518285884,2.599103790650652,2.0141748300291757,0.5090724027207367,0.11758214650241805,2.7255836189877782,2.220830356147174,2.4338103279759613,2.706635858862941,0.5145645536774375,0.7190456778095016,1.9485836618889318,1.989030236936971,0.7297759453957777,2.8069195641493616,0.7912905025575883,2.3951364740781127,1.9854783024636196,1.4586902000285116,2.516815279692968,1.9184153652058888,1.4722482171366698,2.364292173200692,2.6328532135876292,0.5287263823094834,2.522512125447582,0.12696849249539666,1.6835777310320288,1.740433580798975,1.8552795484993392,0.42784643423783764,2.2733011673690813,2.313402145037367,1.0915760913427843,0.9867693312106225,2.521981202603219,0.9902471287223649,2.0030152566587263,0.445299664408489,0.24667153237560102,0.8162064280709302,1.3993275683763569,2.7320808655079443,1.2480461036804384,1.0175377006286561,1.80012646999097,1.1748879502448328,2.248192483255669,0.1693427376948704,2.2677192223707268,2.706265415722314,1.891408429972904,0.7266872806376319,0.30872994311445123,1.7839943466961103,0.9039582159679793,0.7911997125794641,1.5572497694229086,1.8772001291106086,0.6945433048499567,0.46457278915048983,0.5087195685766597,1.6456638656657911,1.4604929396763453,1.9876584121750138,1.3169285790317933,1.3612842307731337,1.1639690854295888,2.3541720634401497,1.2025350523324088,2.0715507793511803,2.412076817254351,2.0538422428669687,2.2476327780531475,0.6755841613301492,0.4131154787469373,1.615250343267985,0.6482318870459376,0.010318476714089586,0.36966642606618083,0.7175978728529864,0.4618569016564624,1.3556736631688866,2.297881192113099,0.7986054392285848,1.8266426460435026,2.600417204653236,2.073417095049873,2.3664127606275542,2.8776986617259714,0.11234507240025704,2.525198378436426,2.4803368284474097,0.9979225355290062,1.421983285741797,2.0192180396673587,0.8581508390682773,0.7148341124755275,0.8824924740310007,1.8434595461954506,2.691727108802218,0.5056782619224476,1.1156519502062272,2.448517720495382,1.1106991628489058,1.1414918230062334,1.6559879295582187,1.0776285530755858,2.67464995368148,1.3698955386604286,2.6986510565575,1.5525384029941722,1.617607081848464,2.125667217908097,2.4115610642821963,0.5919495327550683,1.0135854114469667,2.4076531366925367,1.87325159882622,2.8309478256051688,0.8255763361536699,1.9375396885039051,2.0230403003998423,1.2022610412249182,1.3463404286216814,0.35215565334029075,2.2053554052204962,0.33474255251533047,2.312992379304905,1.130411542085217,0.6359213342427137,1.1929167394595264,1.1212132452917198,0.06114651471414101,0.30701812627654923,2.6003356808223206,2.666910745217134,0.37697855102355016,1.7549562154600862,0.12168982104996373,0.3543471843354691,2.8738980874033686,2.5411977939245616,2.5590888843103468,2.1516752581364225,2.227354097029057,2.112777144264239,1.6096329807489458,1.1761028048469204,2.803148274970531,2.3963522659728502,1.6593571549947208,2.0070869012019035,1.7039550250011537,2.379316127456611,2.8475520432520014,0.9745135633757791,0.020910063295729087,0.8889322854695472,2.9164718455678473,1.1999370635155517,0.6178489477721247,1.1572624270800071,2.5673835564028353,2.1407462916690347,2.313864080284304,1.6709343925406932,2.4094400671262974,1.1298850555404996,2.6939993036401804,0.14922955674044203,1.6450734839753793,0.07503589072217398,2.1414379641550916,0.46932250255610475,2.8906565868636287,2.834211052902887,0.5763303669551842,1.4633659232779919,0.2671592354293455,1.3098118744851075,2.0805806790085746,1.6328741944012408,1.3435286751281899,0.030307392227899133,2.6918730380988296,1.4284062852001422,1.1251204279125455,2.786793609067202,2.517562491329416,2.3815979513473238,1.1416866819161877,0.19543187817300112,0.5684844627870218,0.11980482428552852,2.6266767852987414,1.573989828653628,0.11192132042127878,0.18937714773508074,1.4062417553357733,0.9995306783805031,1.514918954907332,1.636267685712793,2.0743777900233855,2.3271109269891537,2.062512024820026,0.7861631391562567,1.9834788798139054,0.5799294119129466,0.36555683666559435,0.8259385609334107,1.5214399607374787,2.0664817798111104,2.1552308934284605,1.5097084121560327,2.940489449699983,0.5062406120219403,0.37548524754980117,1.1388210240571204,1.2866982335691872,2.7359172383200754,0.08840752730982504,1.6490127320299306,2.515643661865143,1.9616395912442868,2.813296910957979,2.1947364615385805,1.5007992704718593,0.8868848304114116,1.0965381135641439,0.5425371474510527,0.6352433498185255,2.2923240347003273,1.1149241937003223,0.6286734820795998,0.5211911886755831,0.8252664990365797,2.724335068650591,0.2709123955516386,1.694941197555866,1.2245648137935958,1.668161268439145,1.274025124197221,2.491553588400005,0.17520041697552147,0.16298266311685028,2.3721540278202653,2.3244951490570918,0.25055383570495837,2.1292829072678203,2.7168916198423565,2.138959542992673,0.39415655458160304,1.309795275529173,2.41982142526364,0.006967392231348679,2.9618003521962817,2.7861072603122157,2.1385141856752594,2.4762923961164223,0.8309185587779002,0.16234995432248134,0.4309100421371683,2.8990998849953313,1.2183700653472878,1.645505835625143,0.5555331077359775,2.0570933925670825,0.005126162716222904,2.4073316576518513,0.6262225219669151,1.238263366970136,2.0017215308610012,2.8689285503517175,0.38574817173689424,0.8507956426331202,2.621008278562786,2.8019327361426134,2.0935681817121656,1.3436545989069435,0.5089719361945597,2.8120697634919334,0.5212099604460811,2.6936129930609556,2.9847167109706763,1.7155562355733363,1.4753040029363718,0.5720292105083065,2.969720289805,2.18089770404484,2.8367791483493736,0.835415900052763,2.841725442998077,2.230154546355069,1.810578463246374,2.837718415318389,1.367959940331818,1.6939444308431806,2.7880932000102767,0.10861459753917879,2.0461336331678703,1.5165382067573114,0.885816735978536,2.0495913136130532,2.1071084300925973,0.050116603523273406,1.603147416458277,1.5532569613229972,2.1366040798247106,1.0463537297087775,0.2662574199012151,2.230122527721944,1.5721996884075429,1.4169535140609877,1.387422208188877,1.2169143466691912,1.005521884538817,2.9175836099430272,2.726028703022404,1.1649169894257965,0.7367109112777015,1.8493931104440238,2.7523251630224435,1.0914458992765705,1.9971309032755078,2.1500277509129373,2.7701386085904325,1.1837528034444964,1.0744525238276381,2.5196101280753633,2.559324533991241,2.015804425929578,2.383249165138717,0.7712080793664715,1.8199580253593695,1.0442575959427787,1.8677729610911182,2.801908108080909,1.0822273867758798,2.857592531140117,1.4714177962219133,2.790857865357225,2.0968965702517925,0.5286607881961651,1.3443416877404029,1.1597779380779156,0.2489597006173736,1.042287226229627,1.9658884540132273,1.7784043774187268,1.8674189632915639,1.677442317752055,0.9116647148398085,0.032649506699788056,0.09286036142790577,0.7529808433819631,0.34612439966743036,0.4259529519470928,1.8997033823053378,2.8746202894367423,0.34695386997318134,2.7129861888633036,1.52979606718703,0.6811971698413088,0.6878149902257376,1.8303106942073306,2.250791574786871,0.5845302024255501,2.1498492612615903,2.8496427876090706,0.7323055174846398,2.113663120236542,0.09540087840026001,2.9316869354770443,0.411909874394925,2.334863295556983,1.007594425251506,0.254979875772247,1.8994417732253848,2.6008902467432318,0.573049745347221,2.0230961855495906,2.402068648891251,0.274838579963834,2.4031064485167466,0.8553633389583333,2.273233019413718,0.6772774325181454,0.707863160253843,0.8348183604121586,2.0462236789592607,2.598396056348947,2.6103947914050396,2.2680483909217344,1.9630698919564686,2.135594808325822,1.0322181139599902,2.1015926772025306,1.5457717420612607,2.4912110259418956,0.5781538484722628,0.13631680980345617,0.9807622834351872,0.8736757946346803,0.7605630722431198,1.3486362087093582,2.4492239090106045,1.8530079126371939,0.6067572372456216,1.6057691243817416,2.982299959703921,1.3170133396461865,2.755905444809491,2.278425793751722,1.4363783252534748,1.2084180270518254,1.559127756181807,1.1325256242017236,0.6408085403594563,2.445489396916773,0.2822472704733099,0.2653664008481107,2.38856436476385,1.1197956107915898,0.9425445449736258,1.5501633993394028,0.47916003163466914,1.3045348252491766,0.5525045364325147,2.589185819598175,0.972728048261275,0.19724155694975098,2.997401361644676,2.8453174569077904,0.5576730571098469,2.4933404590783264,0.15190139899370347,2.8860367255618433,1.4098316274605158,2.8923719307775784,0.1777003365080978,2.1203586277128474,1.3509135815278621,1.9655686224309536,0.4622810074765611,0.9442631920410591,1.606867141060798,0.37144314567093106,2.3166189535863118,2.8270998032584287,0.3360849429128252,0.8386910130576453,0.020574792739067815,2.9314681203665156,2.7563370731806036,1.4530831141292775,0.0882822276524966,2.5843786381709126,2.0463141819985857,0.34598368155285564,1.5667836140708518,0.8988054114766697,2.9502652886629166,0.41923204198564057,1.9084379952024613,2.383443619831985,1.4489630109324527,1.6629324100078722,2.7590993009356497,1.7368866926868625,0.945362283283318,0.11900643400930488,0.7723750253853126,1.0840367829218862,0.6480792778870257,1.6215292321532393,2.8962235687539843,1.315095171139383,1.5753023347274064,1.0760551862471728,2.258682615834257,0.7862373292005607,1.4598663518366748,0.698736760277906,0.017921813380497253,0.6592874045112587,2.4233111263597578,2.473328743436025,2.477910339248713,1.4205133969978805,0.7494419917694057,0.12849844358369666,2.425799222737015,0.08792258321482982,2.2773316565005794,1.0922958432911984,2.3825787453759326,0.4907703749928205,2.822877122023623,0.4959060449669297,0.2635754823802725,1.8557457289953851,0.012942752366433607,1.4276324829610503,0.5318682174385487,0.0598305788893021,1.8161808958542764,0.17282927366857015,0.8700004601488691,2.250987789280666,2.9870690787014267,0.022599123807586885,1.3490648072640326,1.7503924830535038,0.4698881102320014,2.710440681221534,2.374118452812171,1.921331143497751,2.33657887655385,1.4836147713720373,2.7657647233399727,2.7449713015298025,0.43849335064516826,2.91192125374389,2.9909574515762865,0.2153702988527626,1.739204140254862,2.810416279362305,0.67529230683231,1.1791971559164527,1.8231725793736369,2.5691931180793555,1.257542115993147,2.274340479794609,0.4624743317603419,0.8265041010787348,1.5699913586039669,2.976828387597706,2.031963611472303,0.6390630709714125,2.8880051758714993,0.42480316218166636,2.7263173006377937,0.5273530173761565,0.9177877976831699,1.5484984856556587,2.3684542552785333,2.309575401751604,2.8969249861203474,2.880443692490977,0.5837615626850727,1.2758406914503027,1.6495215024264556,2.206391687539731,1.5700162674997376,1.867631259557855,2.813518014630257,0.8481817051045193,1.7125310138102965,2.9028319229810045,1.1044473723620707,2.3918386835084737,0.3203164457059844,0.04626430741436449,0.3777938976363846,1.435506281365812,0.4878382625172808,2.7654068639645892,0.8517264897751842,1.5707510645424028,1.5159188778241528,2.4475728247082147,0.33190368890604205,1.037395680914258,1.4873879428023937,2.9574736049239925,1.5721130449632224,1.863667332637758,0.39877449759036065,2.2421731108424403,1.6493906628531652,1.5699199703040427,2.3309988103181603,0.5179822026783645,2.5597198347099437,1.8790015040811925,2.4925793372463065,1.5193001460378603,0.3983603764908943,0.06902754155396318,0.8411369628438583,2.0047178887170314,0.5797264729925455,1.926652048894586,2.8468224064612713,1.3703056211417703,0.7372948677369808,1.7373313232670546,2.763530793195983,1.6146807626081159,1.8013668077055298,1.5858142150322152,1.324085713754578,2.0487986116099925,2.4149233686345726,2.0068474464709354,1.1609750809573607,2.998582009215017,0.21035920895772486,0.24788276308851054,0.4898395086092475,1.9121886061497573,2.5865992044422574,0.6787104088411475,1.2148701751508337,2.904081071909275,0.9223081986855848,0.9484651472002026,0.25891804442102484,2.2666916278536124,0.7168072845589064,1.690197172093071,1.7194770011676992,0.6475727586890523,2.2123213368332797,2.9636183324201797,2.2522666839844305,0.8923904424570606,2.700907437995429,0.97685358375593,0.7880590182587079,0.8984042744107104,2.2869723862011684,0.6120735105547086,0.41943599057281844,2.1567364608125263,0.9231394345790838,1.3352700619833378,1.6943615092680655,2.170549128323187,1.4194601457617453,1.6322637215916806,1.8896037971253172,0.845806480484234,0.9517132238290262,1.0103778505900585,2.7930124669160623,2.022639490321051,2.8539144255228246,1.113751843497363,1.6569907346050008,0.29334683385260907,0.7142960711220443,1.7608946276115272,2.530522000157781,1.9185282401639265,1.6595021259170615,0.7561673343964086,0.22146792946853977,0.9263647337175809,0.5846458219147468,2.5304650720425688,1.0339261177318746,2.7605686906946527,0.037170099940429635,2.4396352988077106,2.0266851718027423,2.96902627608044,2.1782919814206982,0.8808208599880005,1.0621862592778448,1.9321903246894137,2.300639261199416,2.777304147655351,2.477980060497477,0.02137624128240767,0.8061226130348704,1.6726569446686188,2.841327661480263,2.8880434670754846,0.8467925332642929,0.0026925074149686257,0.1128341271207689,0.9729260088556826,2.6748708861996704,0.28627130353322894,2.5626812629027462,1.3923415240184323],"lambda":[2.1772026141892376,2.3191593482818718,2.6929319117396533,0.5142516386348122,1.7568714491941122,2.024411437899217,2.3677861361072257,1.0239876471206057,2.2440599121834683,2.9169110123712176,1.0778737761199344,0.9244499922151017,2.9577742826470694,0.5020634674695579,2.884626317948296,2.565853578967977,2.511024879338241,2.7936835383144354,2.3418998880745674,0.032624089783992005,1.31855305192204,2.7777275661324268,0.4689912815278847,2.7610540634841527,1.6511642447291672,1.441580724902978,1.441528501843559,2.703937670208046,1.8307846779903612,1.4211331126388136,0.5821361820169824,1.818333569589719,1.7171929877381356,0.22858452081291802,1.7457715734127721,0.9375741633124179,1.7035429988413138,2.7304630191238823,1.8155802896479887,0.47851780749921047,1.7487557685426038,0.014770644338137018,2.4911417365465303,1.6249051751224768,2.3057769213149975,1.8273627632990306,2.415815836110143,2.7269135861531355,1.5006622421268299,0.9464554122267634,0.2409611052561531,2.9002447059343055,0.6943047145469796,0.4251222228934133,1.724387101921967,0.40070345675886165,1.930947285051712,1.2418770027655357,1.0942055124977084,1.0450970583454169,2.528676093515431,2.4588772126177885,2.3091832402717785,2.546064857391971,1.3368372220884768,0.24594323037818278,2.607381960904836,0.686305883508572,1.4467536068127254,0.6461148553538292,1.732570074727403,1.5806851724009678,0.13750534717690877,1.9970689894984626,1.9898720770560896,2.0451400773458985,1.7995520855272302,2.2542774946269057,2.716647023235289,2.7461229784965036,2.8036000099565124,1.2537236673541283,0.7082343383765008,1.1648931469487198,1.1193072094095127,1.2092291234527195,2.3679173625992913,2.4405098780799133,0.9988993374512001,0.6873569942113,0.8398869569773928,2.8560231850142004,2.4972199096636545,1.5935664091201887,0.44447463505159535,2.8594347234808026,0.24869251238893075,0.5356366441969864,2.872270093092604,1.88983543127377,1.2750481781118868,1.0467263833140394,2.4205150416243777,1.2136253952377363,2.276063244735992,1.0137556382499602,0.2488428199466397,0.4703187641618831,0.9201503437937624,1.8500755494805303,0.48869694320941615,0.46790399281359285,1.5800659530108538,1.1608673652804467,0.7060233306779364,2.1985552385564127,2.6830914342267795,2.075959760168239,1.2714367396093953,2.4482677737921223,2.282271762798375,2.8835928139952145,2.509539697553013,0.027226179656466343,0.5259847167736362,0.9925924273447944,2.4597584184750447,0.554515807427334,1.4960033091004774,0.12606491393734887,0.5945785681754141,2.7230069036021796,0.502919668226478,0.3706772490372501,1.6821556353155938,0.822233196006978,0.8255722260093723,2.079983313262966,0.8840133253842726,1.4917428980970449,0.7799839657999044,2.482525988345295,1.9391848427599785,0.4001217872696996,0.5052633001760072,1.2690771934154839,1.7077371518096978,0.3094390325957894,2.445394811525366,0.795831340133903,1.7476657098434305,2.263513237269469,2.620738598894328,0.6444051291530339,2.480420828443591,0.5169895667620381,0.7798015338053741,2.5628140337603766,0.2588674378350271,0.6383608813082564,1.3201004147521564,0.9502382824863362,2.7769828825930047,0.30444013510892476,2.5351757932972045,2.9847746534776114,0.8642794918912509,0.11309544098068147,2.4874662808784134,2.5091746490643843,2.547639165699022,0.24237339608263686,0.06953227856773303,1.2800235894297758,0.9135665741697523,2.201171237059029,2.753882769661476,2.563366978363992,0.7016035192131536,1.7809013139878216,2.85346148323087,2.115314184904104,1.0906291363188454,2.8915022477041488,2.3434959328299048,1.9562245270864502,2.446321410465734,1.3585868292380232,1.7954481536320253,0.5371581270457095,2.828056431135393,1.2252026453283134,2.9025493875106405,2.346479486060319,2.362750495908571,1.6183417750928026,2.1539011761805815,1.6843367028268141,2.945634125295781,1.9862448471681755,1.8383263480577177,2.1520638435945325,0.7507664269671082,1.6857767481258428,0.5048503400517967,0.32364454642057194,1.0885421757340192,2.3444044963095303,1.9362279540402112,0.7053270459281034,1.5216878163493313,0.5632514076492054,2.85851225439931,1.5920727133053,2.566109038416668,1.8709528719947535,2.8430771411011735,2.0087242253040727,0.8694035169397996,2.648262390979752,0.4473263366854878,2.064934391537034,0.5838770371629425,1.1883451119600106,2.4331698691753405,1.0271783517119026,1.487602512394162,0.6669960638038834,1.8309256758664472,0.963597648819265,2.8977085081183116,0.542725850171295,2.659197264533259,2.7732032415417223,0.9691971418479961,0.4969015439781146,2.3503524456958025,1.9486508948765084,2.641456677130371,2.3633594142701146,0.8712737608699266,0.5661793696420137,1.7672954756779589,2.039936869479571,1.3709779632018406,0.5237675102054895,2.2976420055503963,1.8171990069661332,1.2624652364912552,2.5926267563352323,2.4732183751987606,2.0361337321545223,2.006797650827078,1.151298510191795,1.5992813776410881,2.8378746063312956,0.35699893448155184,2.4734085816491422,1.0140648944455914,0.998719952998526,1.9164638026765994,1.6812546631846694,2.0076317993833452,2.5019385047413176,0.40768855618078415,1.086037579566405,0.7206064482196994,1.639046321330179,0.32179014276927287,0.01481385778496258,1.744467836621611,2.543482762999347,2.8792539214783557,0.8584375471101151,2.856934704645006,0.26213145109424807,1.6669187167495638,1.2032135657647836,0.7075811827289633,0.6576906150567223,0.9660822586556912,1.258783519837284,2.4148376256881896,2.96510233770952,0.07632542146812615,1.1684484832551905,0.32995093972949485,2.7771788214192004,0.7966861172254283,2.160069541574819,0.5612363587852933,1.6453333498139877,0.9182116233232094,0.7241644963544414,0.9024066667861523,0.19874350266858953,0.9754330092696781,2.4783384263142607,0.819636567275019,2.7481956869565556,2.869667576988533,0.9536466221174236,1.3505003523388113,1.108910065255387,0.3108647248386691,1.4736188096439733,1.0811478441610411,1.8867445741564632,2.0918513870414177,0.35111248374212733,0.0508657318127852,0.27614523865272544,0.7830604822874148,0.2481233611259257,1.7945233773611098,0.16120110738980342,0.787918824370389,2.090169933100445,2.674210491707262,2.101978575842148,1.5612530540881966,2.25233250290579,2.9708577304928547,1.2566936691090673,0.7382530068759998,0.4329054674344961,0.5268782875432427,0.6699212025450292,0.9918467047626534,2.851414488158344,0.013676498742046128,2.3325590269539016,1.6835561965496635,0.36757328111108345,1.4065866590038172,1.1631101223491453,0.058436705984675985,0.8554212875563401,2.448011562463507,2.7583126480719278,0.24680387601742249,2.0818791282894726,0.6175386954284681,1.829535722842723,0.09216156446937362,0.046658006841069355,2.93015443115187,0.6581933755721532,0.7624800372003153,0.7316687455428843,0.6452439735716902,0.019386245566204607,0.38518543182217213,0.9032912415647467,1.5083526010933015,2.8758675782356633,0.37071872582738985,2.4870098363626987,0.6632556670908485,2.9611902876973435,0.11019614919082299,1.3169563034603908,0.703718542791135,2.384578738564584,2.1599356455159735,2.0727303549835803,1.6596714937992825,0.8552417557036311,0.9351878358583563,2.7893537071753327,0.021377383059330013,0.45768235446126737,1.495322447766636,1.9450547193452172,0.1480671457731506,2.602145548453375,0.42477375809290185,1.0113286549245817,0.7092291358059084,2.9736722603794394,1.6389817888684286,0.7133848943803676,2.9993562189162803,0.05906427817261939,2.0409516327669257,0.7582634177665506,0.42022031693989814,0.8601758489718252,0.747322678918197,1.15940929819181,0.37244076923859404,0.6927259120594904,2.029538820664542,2.8737309851641655,0.7608567601389871,1.2045360196275752,2.1133338988067383,1.0389676640643144,0.6887413338180697,1.4394175603982682,0.4492438853822547,0.8207083863101905,2.5897705985462043,1.9152926798712977,0.6285547723300835,0.00959913297482995,0.861916742080433,1.0382057035755428,2.942546269454934,0.37836039325621496,1.2772173459498264,2.441255683916999,0.3152248775135491,0.02399668649803921,1.4648104252620269,0.28583741103276084,0.8858524409573516,2.9980406238882096,0.7866023972579554,2.469056022844157,1.5468159095673437,2.9929987265857063,1.8048138705888672,0.3302564023430037,2.6520431655286565,1.055594846294308,1.7740193271446831,0.2530612214348871,2.658430503115693,0.47110273322318386,1.70489642132473,1.9643272816756188,2.9928422239669756,0.8682655301616293,1.9252677691735154,1.6112106206621328,0.1447797058398057,0.8760209362705627,1.13183102981013,0.48750559769434965,0.8991526860464318,0.6744007588017751,1.053013213664641,1.2915946100700992,2.2615547715395268,0.3841735376572619,1.136839834113479,1.1443038344186538,2.408073340424746,0.5298007838831986,0.6604729242615313,2.780057560842558,1.0302654780450824,1.8326061607737958,0.9190795609428146,0.744577338717223,0.47865042381560285,2.5471844684648444,1.3167124866232736,2.9535073872391946,2.119445921639845,2.0382779738758003,2.8843746162624195,0.07180938634410805,1.8160080058330716,2.174754629304365,1.1286185662814692,1.9635410076747808,0.5871260828629834,2.39189118789244,1.9935499477593668,0.27230690304113936,1.570371485633347,0.8683261810827727,1.357275721713713,1.9564743359526984,1.6787974298193034,1.6531156578487247,2.723212451066664,2.0242017505362986,0.17373870397675173,1.2447024903849677,2.1426648814310063,1.3862155713994324,1.5724362393360933,1.0536392696353747,1.412853321866132,1.8935558497112177,1.3732928116339875,2.5480771080184628,2.422209091479217,1.1475434713455328,1.8382854055029405,2.3648260708097624,2.8821157046064174,1.5836937869922871,0.6733103811343686,2.8566030696961056,1.8876196021771787,1.6731973337191508,1.3390161557522238,1.750652838018832,0.41796809205630336,2.058742503288941,0.9532755097012353,0.5287700175460015,2.277360752865457,2.727370450911396,2.3396880232050443,2.3804679059252245,1.8934822003610199,0.9111284487894398,1.8162526390418585,1.2003181792082738,1.5265899642172756,2.5907435498594524,2.3714364822468497,0.7392551925104758,2.9886232689668426,2.763668446683921,1.2503138090789732,2.381934631029539,1.4063713048410247,2.456671006112985,2.0456898764632676,0.832223220750602,1.3491548716383237,0.9063724684025136,2.5868104347573118,2.096713944088302,0.6396423464022243,1.9646958887643162,2.2337736720754995,0.42347021073138547,1.8601885126980287,1.5841729015417694,1.7868941412928976,0.7527881610990461,1.544844597967676,1.9083442280673628,1.7043571208218786,2.8038399174130504,0.6678511846831583,0.906149556061743,0.8812399008236147,0.5654703808519774,2.218161584652477,1.3200538419084722,2.1485642952758663,2.989623308904421,0.11444604595523011,1.876444556949791,2.2536623771728683,0.7029556814513795,2.8515856307462295,0.48697243702487003,0.7568293188581132,0.43426777530672434,0.01864508114916963,2.7268815583602253,1.2956012957353096,1.7666264414859854,0.13067699887810913,2.9994859485183634,0.6166947043167341,1.5527243519846483,2.5220258653718703,0.048731069554611706,2.5674653903488505,0.6825069903403087,1.4083977853364202,1.6763914235975477,2.025783126387267,0.4457580961932017,2.68056797384196,1.8206227345303743,2.4339757938167605,2.967064443843281,0.37262189208124874,1.523486250000635,0.1772586194032626,2.4597323154251054,1.9807722953991709,2.614869104498538,2.189807729400383,1.5821567546031114,0.6111265808378128,1.258552831292899,0.544283285632059,1.7057558577631742,1.0925347848073421,2.382833252705753,1.1938745226599115,1.3083133171287455,1.5160838186536187,2.347127924547251,2.723802731576747,0.25134925864641944,1.0958904131645864,2.5037064093371018,2.0960036902107553,2.0616185354183583,1.0848260943540013,2.9049498840377534,0.45164912861296536,2.520213231818512,1.2667535678545505,0.8514157948499248,2.171694397810714,0.8992705518102961,2.948267020866962,2.5976927648167933,2.448514940282367,1.0934740059951302,1.3976874623711748,1.2085832746686263,0.9147857022287655,1.339126983048366,2.616185585134808,2.1951533133784302,0.7309274736900178,2.3176420241205964,2.9504005954845,1.6366715621256875,1.9901385195520573,1.9271374286635734,0.19912029549490673,1.4969014542820818,2.4474284142927316,2.8005741481508046,0.0017748621902986539,0.5179628249548873,0.5860387979715969,2.8874319699548208,2.33288795339226,0.08370091329471463,1.8103157771232656,1.4209554700780476,1.9590421980052428,2.0081741798774866,0.0666779176406116,0.7894029221692715,2.698146829949812,2.2019658792900216,2.0477361087873818,0.3825170432760796,2.2345748276953916,0.5557606698162816,0.06850112821862764,0.34683847167460446,2.091932015424195,2.5805633167196222,2.184103145984941,0.2355032774279997,1.598727142020704,1.1183869963588922,0.5642665002390965,1.8487972680408127,0.80957425312425,2.540965778916074,1.9102359914198739,1.3623683493703687,1.1606214228565341,1.7252879551963134,0.9960574113773211,0.9021332330016278,1.5924550941867366,2.831920604230519,1.1095720293350602,0.8073381760377434,1.9170486138250782,0.013499274684599438,2.20830610347475,1.7414115279035451,0.8263219795865124,0.5359944739282201,2.159741303112832,1.0960630689331012,1.216502307114035,2.742193368625947,2.2930058313505017,1.1084304935252394,0.18494136403489292,2.759111296519424,1.8698199320000497,1.076019568102928,0.46978842283460853,2.906672859823809,2.93579467173724,2.8934570008282297,2.1144066359148344,0.5070905882302079,0.7018631129320585,2.574489733173457,0.598869701115448,0.9469375476653705,0.7406213571509401,1.8020165792028286,2.836934392556481,1.3771206467545676,2.549436984650807,0.07092915787538367,1.5059254390969004,0.4933271459406876,1.5267978920724892,2.2616927921239367,2.7871980828532967,0.8691121009325489,0.3021709489723925,2.471467481902332,0.30909520079284825,1.8444332812332906,0.5782205916199155,2.1346144372480778,1.9220582033458784,1.4392713068824534,1.6827881432349907,2.449890234523582,1.5110847593348842,2.7068004104022325,2.069523750512039,2.394160046034326,0.542792084877243,1.7336885962453317,2.965225376575333,1.2617341003604436,1.0721215240880417,0.223064169059227,2.1511653941955955,1.1987176093473761,1.670127708162132,2.7775929193262003,1.385148181669281,1.7942148883998272,2.792211410743783,2.7476899361891007,2.2465918992010034,2.041992348590287,1.130193713933564,0.20788758758774373,2.798609689504839,0.5264634065578182,1.1951609311914593,0.6486731227168974,0.8648656292074965,2.6348093535061903,0.5136774135664872,1.2328085652050866,1.5132875781077944,2.8239140674813887,0.6951877994480926,1.9576150848069565,1.1218200445033548,1.3192638357293804,1.9604842949711758,0.11494937543193107,2.730242769576782,1.7281814885235698,1.4947831599927026,2.5329007995734836,0.24852188148822063,2.377402964290928,0.930828719191948,1.0103165239413419,0.6101922298813216,2.714868664481937,2.2788128596666795,1.4490344758707752,1.299670791978384,2.548545508133548,2.9657452513675207,2.9837505962284396,2.9455437693038435,2.922603044971524,1.8618157402002846,0.20099739699492436,1.5773972823699045,2.605814002772897,0.6470553959049199,1.186387585448092,2.0712340257348427,2.7948098666625416,2.5065218846638713,1.4464922388781247,0.6415395046346255,1.2511536693854572,0.2331872462054272,1.104270669976665,0.5885506646813135,0.6981917980006513,0.9323207812410692,1.5549770691066938,1.2204151301780166,0.869520130379261,2.2725874367862455,1.4597666044924784,0.30802113090514305,2.6332703464507334,0.14915491982600249,2.831837007625543,2.1318386914984,2.25473658861659,0.10538252240490387,0.4066878175193769,2.34776338940189,2.3324791749050724,0.6961786455202887,0.29239986858731837,1.2548581580534655,1.2830258155562073,2.7649660221346393,1.749476695035325,1.8398000382585755,0.06522088097185308,1.0856206920399518,2.6017623964863184,2.0682040683374483,0.5583573668006363,2.2081205095983654,0.13003947154690265,2.1681883599136906,0.07626521634675254,1.1927300038419948,0.08798528084476032,0.09474218355789965,0.12967045472356364,2.6580550459636765,2.239485468640644,0.29762757133650775,0.5493757352366828,2.7562416482235155,2.052838275507152,2.627330065145764,0.5591157124723636,0.32783764392025616,1.9509786397998543,2.3449392608155684,0.24137612585405588,0.7650843220383674,1.5088742353265996,2.381894374150466,1.5765024872674736,2.100410925127597,0.6729350554205895,1.0202887360054425,1.9914351632125522,0.3746815110567703,0.4547062055465858,2.589813083245467,2.886704381114175,2.7428836389656617,0.29193873208108423,1.0506493767224023,2.225223513712565,0.09530412013493672,1.4513471243872824,0.801064085535538,1.6417775062145374,1.946257243457846,0.2695396709343958,1.4526126354308428,2.401729167061234,1.1973587884328045,0.5760796512680124,0.024868149251390026,1.7251770314459152,0.326105181106757,0.47939987558546315,2.071194146717475,0.9240973634303769,0.5792585021243397,1.7668289543301594,1.8143126882389702,1.2319021052216572,1.7177727648174421,2.5423433746916206,0.9471211791184999,1.7494498814081951,0.7077643716062441,0.08673235518588363,1.1968290361987801,0.7386728658712847,2.1599325550988646,2.4288887451095014,1.6703395882421164,2.2506207258139277,2.835432500611576,2.755960264721518,2.5509737570450164,2.8277884739498678,1.886552854252624,0.9379663547749766,0.05132481892105467,1.745064053908393,2.195568722664574,1.7155624782973213,2.5230858847694284,2.569138286223847,0.9582422654107063,2.5102633596070456,2.7311747438123133,1.2781849010583968,2.4285502399058876,0.22359105398715418,0.5718857879914396,2.0480769967488937,2.8297093151448927,0.24717676274723943,2.1471927324082127,1.5265163858104775,2.292797719799773,0.22902583505772456,1.0454799678889581,0.46504893389319624,1.6353106343139765,2.464286453129252,2.406134615161612,0.3185459158061461,1.6901492620415437,2.652720344162202,1.7733016855849202,1.329642359993848,1.7917569358444883,0.049286362317801036,1.6750210477687046,1.2301925489938137,0.4113469798464444,2.0410212722389054,0.9102331279504778,0.8764039284277305,0.8324451682626977,2.357351997545651,0.15259568168199267,1.4553492434851432,0.8073990291172408,0.7485559677448395,1.6384139211467588,2.644641116610126,1.8229008946151004,1.4649473433733435,0.5723259185990732,0.15753187753559317,2.8345804907921677,0.0452392212306203,0.4706437685091245,1.854716737934526,0.6726911731394307,0.09227213975354998,0.4323471119541036,0.027231934066352936,2.9433053821485347,1.6272015111239506,0.8561057712022271,0.9092564866534139,2.446503667782733,1.6377443165690047,0.24838699963981759,0.9768244212449366,1.082606529237881,2.542827769132236,1.5803311541078566,2.8175301739866008,0.9691068551874389,1.1066634358727327,0.2765517548746268,0.6723514732829312,2.703555674678861,0.3628727053777949,1.532735397015176,1.9416964399496088,0.5031274817526521,0.1870314506731352,2.414768823749125,0.6220923462415064,2.366388675684767,1.2087148380528712,0.3643618118992775,0.8821919405324994,0.3848827962080972,0.9820790281000451,0.3286534490889945,0.37083435394742925,2.1094061255081495,0.5967386756364257,0.972606446916576,1.966504160588098,1.6001823493654643,2.2202864166487095,0.49471494623364554,2.9630237542861764,0.2806137435014553,2.007740711688747,2.819758349877357,2.126464461620571,1.0440764783859298,2.501675969769064,0.3956107426547668,1.4331851782757041,1.9329174927201853,0.5602173378925885]} diff --git a/test/fixtures/julia/runner.jl b/test/fixtures/julia/runner.jl index 223f9c5..8cdafcc 100644 --- a/test/fixtures/julia/runner.jl +++ b/test/fixtures/julia/runner.jl @@ -57,6 +57,7 @@ function gen( x, lambda, name ) # Write the data to the output filepath as JSON: outfile = open( filepath, "w" ); write( outfile, JSON.json(data) ); + write( outfile, "\n" ); close( outfile ); end diff --git a/test/fixtures/julia/small.json b/test/fixtures/julia/small.json index 63d77a5..3ec7377 100644 --- a/test/fixtures/julia/small.json +++ b/test/fixtures/julia/small.json @@ -1 +1 @@ -{"expected":[1.548688681211891,1.2495850146313812,1.2124548473458703,1.053343680200027,2.146180865724732,1.1442253335747115,1.0794129993749275,1.007022977335736,3.8358831188197198,1.0947172364091295,1.2732241283572416,1.0383946289441088,1.1408248465031336,2.07080689026056,1.5098755890343767,1.2475179469892146,1.1016388569314388,1.4524879078274675,1.6942027543674563,1.0837872607547154,1.174123702245259,1.0592987941977718,1.036100526054362,1.090483834736303,1.4684686893382504,1.8426855258124508,1.5610436942146175,1.3356507304323482,1.2108286197270761,1.1986073195316804,1.0867602196608908,1.9282042809568813,3.2303824519025452,1.045438615768893,2.1130100172386843,1.2923981986307587,1.053473143352373,1.8543153874249394,2.5528759847288396,1.0066257426645504,1.2327248439696046,2.8952560557825224,1.745000922793042,1.3729889567597673,1.274089963524296,1.4888571423131451,1.1360961004404495,2.4839264965578622,1.2999297852275193,1.4206936942202426,1.9720759400599153,1.0305137106431257,1.6600708674642934,1.027073825048747,1.421815696072216,1.0603330586046689,1.2241594373886175,2.219080053755167,1.710006792422257,1.0589271204160573,1.331944908116847,1.0409927538328485,1.824770530088214,1.1955647026192155,1.0684933845804017,3.279631831105449,2.3077117892003365,1.1057549571116339,1.2881561217310193,2.644948456196147,2.7382407406992972,2.0062351650365255,1.7356801653393619,1.009519817805238,1.090810163600123,1.191627587648678,1.3304643371163203,2.4789132415318527,1.1590263404266015,1.140635836119553,1.6327767539307767,1.0457638830939255,1.5183328023760132,1.4513960268756718,1.0358738521178572,4.267301061835646,1.3098925473856249,1.150839178542702,1.2384679532437304,1.0288643022163415,1.6796785303053943,1.690964285787818,1.2390383294361822,4.239105316107268,1.023334443615961,2.5219060536434657,1.0606119318960936,1.1070345934685497,1.552088148469657,1.45609943689111,2.1630583386433684,1.2621037551097862,2.0190547861229757,2.30137319510517,1.9493355547522542,1.6158098331722348,1.0260812327633064,1.0027824780546803,1.0292299200458648,1.999323609552241,2.9597610268664534,1.0678800737634853,2.3274545667159905,1.0395334270963321,1.043994790238037,2.5955745123979206,1.1355054043028787,1.1112856104259425,1.8374989670443227,1.3010707461077364,2.2463567801751094,1.4993603987889768,1.1754561268736394,1.199897082345454,1.5740304910578709,1.136518437605516,3.4898801237838226,1.0809218789836308,1.071419263266134,1.6934878152259962,1.6088310159978727,1.1736924648272222,1.3687723743638287,2.224348878325212,2.121118259698039,1.7732556388940224,1.503333495727225,1.103513838546365,1.2047609872293976,1.2666937666840223,1.1362075780137648,1.3830101687044734,1.2025967799898925,3.7924289776183637,1.3638557445843464,1.1954803718206501,1.0273218578972894,1.4866382268526395,1.571780792109959,1.0505946197321583,1.0583350115122276,1.1823562559475207,1.077162169929223,2.0353785740659736,3.528907245520728,1.21222994028295,2.3327663272689305,1.0108141159568333,1.0515625455015498,1.5211471901612619,2.355246729140303,1.2515753732851054,1.3633376343758095,1.097553043851084,1.0448902600490244,1.2816607501654211,1.0598723485962287,1.1956380418510086,1.52619091494553,1.2191623547450239,1.2807597388830487,1.0311045675320338,1.049338657155194,1.8984076026326857,1.5667027268781115,1.4144906063468665,1.0721618953485919,1.098651559022845,1.8929449173179171,1.1157045038540354,1.8004930922951399,1.2651312988856995,1.1037147574230515,1.568602709243453,1.6605538805710034,1.2578314832116797,4.596205701223515,1.254469883158136,1.015379080151586,1.1232123793877653,1.648658619474197,1.5821766959887356,1.0380690867702722,1.0019978292913092,1.1807339297300314,1.177455872518904,1.0216741258325555,1.078568174451737,1.054229929956661,3.8757101049406155,2.1015253192804293,1.005848528230652,1.2253447690124082,3.0234937474175374,1.5562047718340373,1.8742478674367629,1.977649146291897,2.1705799362172735,1.1453757552900887,1.0547711634458146,1.0469611363788158,1.1377085911764222,2.2915266350887378,1.0184973540912394,1.2049527247801561,3.018038774174135,2.0296434916442747,1.1420230084544802,4.073960825490233,1.033330525672688,1.0220508465221865,2.548400080666017,1.8542070430039301,2.5349013974340013,1.9897211060370872,2.1636137659922587,2.7320297492463483,3.822453720068396,1.0843695022604827,1.14607252323251,1.226134920441702,1.4808854927323223,2.810101557575897,1.019448159324528,1.0785402397493722,1.2766678165396794,1.1491657434646838,1.0922552594596993,1.5730224219559354,1.665863445401599,1.062438238091967,4.088927419537671,1.710431817900434,1.0740699555120745,1.9445318834802963,1.0242544218976606,4.245609557797378,1.1468426744907672,1.0331105368122906,1.1248335111305963,1.0228939784128683,1.2401744267035741,1.103755796814425,1.2006381338650158,1.0842446920962396,1.940354423325777,1.2706238307003248,1.2954415226313813,1.1564477059081022,1.028804548069219,1.080595585798713,1.1019855326395858,1.4806375116054462,1.0840653068523,2.056788671779776,1.370496145363795,1.5144353288168841,1.086796328270557,1.038495037578183,1.5036610508464077,1.4196918323251415,1.001917291991353,2.986175239759576,3.7828326495607687,1.2284540160900919,3.399934017233734,1.0494014554936104,1.0158399466861867,3.588696823437918,1.4252692447442663,1.544619757638996,1.1607239970655658,2.169688790446585,1.0088477960616151,1.0563318597983873,1.0233571922007312,1.316447104652506,1.0138270913701366,1.2629181483111125,1.0302996317404927,1.000669366368846,1.9333923435954314,1.4545268092537975,1.0071074583698492,1.0214072317927878,1.1697640000038863,1.5004101091743332,3.2817048855442197,1.232278976651185,1.2975106806077588,1.010605897923026,1.9845479917211069,2.624804444066992,1.0679750755331958,1.0307793556265135,3.421788794968114,1.0685874340877908,1.321555263531288,1.0508145273287448,1.6494672867533624,1.194577993561867,1.7343702659516218,1.0072889090096315,2.4890318272473166,2.7069919368795263,2.7471078062473504,2.733999496233536,1.0437766063592644,1.1588203532192727,1.165241140102868,1.8448195382229766,1.1500595263446511,4.951264849419996,1.7505873168925064,1.100459463209592,1.17161779285367,1.708357346787583,1.0116403156967007,2.7468132007554367,1.0035590518245197,2.3908473879627055,2.343750122910762,1.3346133614902067,1.6063674859919903,1.27314157384551,1.0984758198312887,1.0029198965444281,3.767823029035106,2.3036016550536287,1.2160901178871437,1.3507065461805134,1.192073513541342,2.0497846519160845,1.5042826932484519,2.1818968707197226,1.500299350950396,3.8732623335974807,1.2173666634993454,1.0312250474728513,1.0153619129492952,1.0435818431877029,1.3094965434333876,1.3252559075462165,1.318683703932567,1.0822104951819835,1.1423044082382012,1.1728515212813493,2.9193273752477786,1.6380247589126506,1.01631520493963,2.0700332230573513,1.0417626112704004,1.3178943615626935,1.0668769515779843,3.5958164474925405,1.0650839157608274,1.6606348017915646,1.0426526896035921,1.3268606273313626,1.448428878093472,1.2150236592130446,1.4586240613518355,1.7713519191276739,1.659526736872328,1.1782040520151018,1.8795885682984856,1.0568716917017769,1.057198832029673,1.5947790836180484,1.122266998465017,1.783878200927127,1.1859492222507573,1.2800636134310865,2.626862837641876,1.0498482201229493,1.004696141159277,1.1929850516093354,2.773077707883085,1.2259005407906916,1.244277138496703,1.9743177719162706,2.1180066084447313,1.622667697982062,1.0116456525519872,3.3751009047764473,1.541152773172723,1.2190617802212487,1.0205557847994158,1.9355639912599298,2.873949115881918,1.4890842155622463,2.113309578374153,1.3562144517431975,1.059786989924259,2.418746001795726,1.3145937066979663,1.1049210721778688,1.0175827826308537,1.3621945037251453,1.3848706029855533,2.197804169010255,1.2603078453636123,1.0619793576488221,2.135904326716471,1.2437887434625479,1.020936922465175,1.9944156561105664,1.2298690611851812,1.135462477053375,1.0880911270967724,1.2337460767118,1.0528130957744877,1.0548229298604404,1.1287902768461437,1.0103499674564325,1.0153482157296103,2.5852133437468283,1.0398598543972581,1.162501533014561,2.145338789391909,1.604546203971633,1.2146890624801048,1.8517027635334455,1.047026587381247,1.3549691551939622,1.1114025606172075,1.4032710350206175,1.3114457776829023,1.0367158492802255,1.4384520781799521,1.1570416357282156,3.862969891419964,1.4296665956708627,1.7805332488690442,2.562786436682005,1.214518582721933,2.6334961155870156,1.9146904404323177,1.6339003883984393,1.0359064401266396,1.1886809456366063,1.0549673828120292,1.5233567404712918,1.1250471359808254,1.0528909047605248,1.4327566602968385,1.380238350569662,1.1922288099303116,3.9998260479398864,1.718895748801453,1.2579929340376796,1.2059528173171963,1.4983681786349892,1.6580039022189301,1.1678354738416163,2.257331048166475,1.3259197970925674,1.5606876532228737,1.1555578228160353,1.0140271816072863,1.8792938671507105,1.422613084694858,1.1970749579072024,1.9358555661264853,1.0548738349382074,1.3090049203131078,1.157582460941988,1.1579604089647693,3.6412652431526924,2.676903970570928,1.001956860525953,3.425967073294925,1.0950326330829094,2.2297859400760505,2.3813477962359695,1.5753602444923076,1.0097873341250818,1.0104131724832413,2.0799550205680033,1.011079666545223,1.1685008808520345,1.540885218101524,1.4560022160477684,1.021548908225347,2.0183696473217942,2.719937493556588,1.2576445131972864,1.4008734348885516,1.0461780412137587,1.3388177797904435,1.0154678593294957,1.2854755455348195,1.5735334266826684,1.023406552553303,1.1505644489848006,1.105734175136266,1.0051906504983574,1.2653576755822777,1.0143124095228933,1.4464160400257846,1.1014134562781006,1.016379821894748,1.4883249688910651,1.3949455723710178,1.4405673140963664,1.9930477098194923,3.3998964694545846,1.1484289502429348,1.621200386813403,1.311581354565667,1.1188446162813541,2.7694671288534085,1.0674034689682805,1.1609725819532322,1.20841553526818,1.3092947641817083,1.1335133811629863,1.0149467984964484,3.3600538917421305,1.7242222186128657,1.1111161614738474,4.130085846093261,2.9213232869641264,1.6528467836276273,1.3410391280919223,2.1866810306527964,1.0595971578771723,1.0147536084097042,2.7913686107051983,1.1876376044817152,1.2227072364299476,1.0137275314383447,1.0527981937124606,1.003011514382857,1.4720095303943928,1.0871299691830756,1.1826308494647813,1.0415653676743217,2.7051878297338243,1.0810069795818038,1.7506389669259026,1.7030006041060521,2.632998436858736,1.231178711250007,1.022392152493665,1.0102947167659617,1.0233692398407024,1.4372282577473716,1.0678895876456154,1.0752640209655842,1.0426683220691506,1.988908845030333,1.7475970597505825,1.0829864829807114,4.676295957472837,1.0259372886248421,1.369757033712962,1.0035387049341757,2.5986793214861894,1.0335818315871999,1.0824181781113402,1.0547682671001584,1.0728012599631775,1.1732211401223716,1.144980209075195,3.2558812542823383,3.0232745328370947,1.2186608539447192,1.3957227102195626,2.9877049794608688,1.3290213620547435,1.2278376930182409,1.0025152159493531,1.8937128826116019,1.0206653350102404,1.1070403156371158,1.173801008337045,1.0050044175011252,2.336594052685719,1.7155536677293197,1.350256076342962,1.6396490523757399,1.2380316102907372,1.3370967850175752,1.116441045044879,1.2110295729220388,1.6525896204812092,1.0341477363268514,1.0164602573570358,1.1943978036265626,1.0265524641281834,1.1076737843226738,1.0790004773715027,2.101738695557817,3.5867732176016545,4.076378553689256,1.1518115199309398,1.1621523044856308,1.0969871788624816,1.022644933161374,1.0216418810590109,1.1797018990344863,1.176780597390855,3.0120961085099047,1.157213201359353,1.1246058975090427,2.36501689043926,2.6455188273342523,1.49950645335083,1.1064337280442518,2.566922192528491,1.0293805595955259,1.0365353988253891,1.0017993809280172,2.4402185263139184,1.033001841920388,1.6932724359367906,1.0058794253689598,1.7986770419827294,1.3047089713549556,1.11233553882028,1.3032288329793014,1.0006745172528928,1.0824167784247916,1.2941338430543383,3.8242568859380826,1.1564344053649867,3.405981093889326,2.7596386969642572,1.1614367568575283,1.0755965574905224,1.4923623881870545,1.0020717995739596,1.0779574291735399,1.1109107539440006,1.7281049653908793,1.2915050308041423,1.0341716842946578,1.0520754086989563,1.1378243292675418,1.7392611135818432,1.2604977118163836,1.716850688982511,1.6250279428869672,3.303799311624593,1.4884722198817597,1.5040985908420024,4.914551572971268,1.188360627289239,1.0220330434423717,1.107833126902392,1.2797959107818717,1.3802473898823813,1.0005634741649232,1.688287700173005,1.1288019259021473,1.2590937242667657,1.0635168463958444,1.2885575804952902,1.252834029675185,1.3434606547802161,1.126448085475689,1.0079192886914659,1.2414095890137418,1.0053062426792418,1.1669924614061926,1.1158001078493152,1.0502519058159696,1.0458534487092013,1.1995800329401365,2.5307755487058277,1.1247877567909148,1.481749855943565,1.3550457882598608,2.33579164020464,1.0963411577096753,1.1802874537792265,3.3424609382827515,1.0266150518352983,1.68326255688505,2.8250917414595498,1.2965943402380966,4.784015925955925,1.1194805900863851,1.0006210967601186,2.3625292452882865,2.0258466447907364,2.253222618300734,1.6142105968507168,1.2818022920420893,1.088178385293792,1.9394602832694379,4.146051481997891,3.3517061492912976,1.5029982519748777,1.0182559134627114,1.5417590129702523,1.2459416758993795,1.280772136316215,1.743887747754808,1.0032654540978478,3.8648482615039943,2.204217540851478,2.1887155804287404,1.3898758364772459,1.3348277465066973,2.753879111080934,1.018490984551534,1.0644562909382618,1.3318144993900483,1.1152382243391992,1.0728596322906565,1.2308975174005143,1.068367015343564,1.1581701417494696,1.5115167633450528,1.3244221563340692,1.140148997956854,1.1961762652550127,1.4013391629218623,1.1892836991517504,1.0492989267999535,1.1248283976187459,1.1840014357094144,1.1206323674259075,1.017274568062601,1.9234437430375166,1.0344669529762036,1.0042703104451478,1.2781054929303262,1.562035387408731,1.5684440081379796,1.0775506801356183,1.083969563288952,1.1868057489411954,2.1125000398659863,1.0195739177012306,1.1563977951759272,1.2549424680116565,1.069739498477986,1.1508913415150637,1.5661956408743594,1.3338435806545417,2.018012522552909,1.0073649378586857,1.1261916681402984,1.583674365854099,2.9187308874042968,1.7147327114124908,2.1180911500185764,1.7155373077418834,1.4884757908272614,1.4017853464024554,3.020512607845218,1.1807420904541024,1.0044257678157187,1.1464331693056287,1.5421908927767978,1.0755664432009349,1.791778568997026,1.0605110216823832,1.2029491826105136,1.1559681819287397,1.1824207351553515,1.1041693741388172,1.1592618622716548,1.243757174845794,3.1749388654011304,1.468648997894795,1.000600935153444,1.3583979817526644,1.0008481431167964,1.0306771417703442,1.21171495147298,1.3524202699124683,3.076378487246266,1.0847716045616846,1.003764425954358,2.1011315771796073,1.2984030561889655,1.0261902378304577,1.961217738819162,1.0344352506456265,1.0526850816501385,1.0748898566280771,3.145502261025873,1.2998575474761056,1.0487768776480417,1.129166772196132,1.0205116369805027,1.122295232208918,1.007497013743872,1.1748786030487373,1.05925274354148,1.5204640090809762,1.937340559095127,1.1325710413699994,1.308893135641966,1.530598639214388,1.3528779371185657,1.1025838813387905,1.2641611250897857,1.1742075884362309,1.2343156809417313,1.9347791707876494,1.0134922640507873,1.2924072758227616,1.6037737705324049,1.2940627352775806,1.4268082156637227,1.920175417457606,1.00090544091353,1.4482431287733561,1.7029061920573438,1.9994587259520538,1.010244795181262,1.074737682637551,2.2775919497100663,1.77606040484034,1.0788202560638647,1.2861338499547963,1.0846307190688307,1.0111418089837072,1.3909705748290278,1.2662268116909452,1.1086980760231313,1.1507834382425017,1.2536569526189756,1.154080553573398,1.1594910761492023,1.1877915418346254,1.136166743491356,1.0160156419521478,2.5415227042746316,1.2228153643635236,3.5829735062435484,1.0868631526467953,1.2585166823380187,3.3161508173484737,1.4354824588263635,1.1841665563767336,2.057283579476866,1.1084919638522481,1.144883396961775,1.0564592760336584,1.0305722365825696,1.5090482585442648,1.0174421537656506,1.3431738071035606,1.1525590092363818,1.0137433893656747,1.2027939734219144,1.6931799804589864,1.353885072183117,1.1174898740441757,1.1982807120102952,1.7110014709875208,1.4715928597854933,1.000449231262713,1.3572701264953664,1.4680000751509343,1.4880994938149414,3.8454418036608464,1.2310756672833547,1.4678600569563778,1.5007278993025317,2.137077463530251,1.3833858519935658,1.0170121915465937,1.5699111926479459,1.0854148193057713,1.021740996632942,1.6685208622084577,2.3804741063660853,1.6792664581781493,2.037944983021982,1.7964916306369152,1.083281357516313,1.291904223208759,1.446174847079008,1.2044776837736717,1.1218048612691884,2.4713668527556782,1.7368252445916275,1.1821656926837785,1.0241300185800164,1.0023563774330067,1.7178161404298975,1.0090345500497497,1.1041682871371974,1.1476797344541954,1.591425837751851,3.3638361261027985,1.0192237305952934,1.6052257629899527,1.2447770707377035,1.1392113206701056,1.3929349887518365,1.0737232280590712,1.009581246493099,1.274274357204563,1.9492278285676863,1.0946485739651437,1.0019090185035626,2.808408361712971,1.2332403356232096,2.972444300713637,1.1230683943380158,1.0434494603981463,1.0864498686237356,1.0730682634895325,1.0916349484908725,1.058417455838018,1.1816395116449274,1.4058327994558948,2.142603310814851,1.016448477450291,1.0223087763651924,1.6559675638840978,1.001297130320313,2.449130359202365,2.2952231622442634,1.1166505664440818,1.0710249092829325,1.0945024971024824,1.0263293032630347,2.2592857054211724,1.0967846285601035,1.7374714064300245,1.3061851410784853,1.1711129790943007,1.0778187804654804,1.007291553279315,1.1316251323517044,3.1926327107702264,1.0341048031450066,4.400993140777139,1.4361846742808884,1.4660844119973784,1.0839229654542981,1.301652004584888,1.045359781398216,3.6620186347888404,1.3154936069694745,1.0068034515285313,1.122649591501682,1.0381348095643093,1.4453475258687676,2.325202946461478,2.1550758648998745,1.2830811859905846,1.9172457021701963,1.1357674660670243,2.220366918914703,2.0256375141461054,1.1408992952637167,1.0085259815237264,1.576462241389173,1.1090353899113803,1.2181074701322177,1.3080687540667046,1.6855279237571386,1.8392764896684213,2.2297093320772876,1.014980981589656,2.194487994906622,1.129194213110144,1.0939936150073133,2.890214703614239,1.3800294939972468,2.399101697984108,1.0991942971793434,1.0009014362557003,1.04425310266201,1.9663236790287135,1.029121013539682,1.0300460617195373,1.0739859558309583,2.092014314848487,2.2985011238472253,1.0035186090035444,1.7200000311809907,4.867512818968392,1.0010100341848909,1.0734860462094977,1.8453857799044797,1.44702673290025,1.0127631697377724,1.3590177526041638,2.3578355402519047],"x":[0.38311855030497366,0.5993215421108364,0.38416087911048447,0.23373177246466126,0.9305917747571792,0.41252561329595494,0.36519921961284596,0.7793674936215182,0.9443540268105746,0.09437029456259238,0.6573147599889659,0.185344338473302,0.8939871516150566,0.751508201984701,0.4330321569139275,0.4507736376142948,0.1680199212029041,0.317435115978985,0.5310808538983218,0.4149838418787437,0.8786570320330129,0.14286658839329358,0.1133267060901113,0.21535993048710922,0.6407225989930938,0.7191488993436483,0.3821059873844195,0.4531803496439164,0.20104618545398267,0.2175233446485536,0.12256247186043523,0.8660593349182932,0.9107442622487074,0.3101648831478625,0.7322580220327106,0.6442948786954801,0.09357455123593805,0.5018206540783388,0.8040210592511638,0.15059888230255902,0.20659688768317386,0.8604324533659256,0.4547824699712444,0.32428329071943685,0.2819642731703744,0.4519251246018594,0.12145808780392753,0.6611519308173146,0.25782682952235136,0.7361258518209617,0.6274983843597259,0.04465306611086595,0.5286082588931904,0.11134724499063697,0.8766166251918164,0.2072303339922028,0.2030391772649056,0.7219191010773061,0.7421134753510248,0.10414039120971541,0.2933285290562213,0.1962179905107042,0.9572523435695255,0.248051977924443,0.8729329350649897,0.9176651408219061,0.9787165938078697,0.23993904099161822,0.3695914971099046,0.7856999377368186,0.8641092113766622,0.6638206384137055,0.5101935130545745,0.39409368226146757,0.14045130758654034,0.26393196093811033,0.6402764472291216,0.6888071171537993,0.5061613151681825,0.2360225474332316,0.4906793650844681,0.696976070425068,0.6825443574716821,0.44008662396181797,0.3099902985766354,0.9653044394324932,0.6546934693678998,0.26409120499481964,0.2021667728652139,0.06952614433902649,0.42458867981950865,0.9292149741007785,0.5605326876293653,0.9982652212220993,0.1378125853195693,0.9330689322885406,0.2438308968357259,0.14640741898378162,0.4000850357180734,0.48903335535595827,0.678962139121777,0.26232414466870657,0.6584757061697855,0.7334972979319512,0.6503714892827275,0.44188178791372756,0.3935521580122274,0.07192534964714903,0.23517736065613715,0.7462666914169551,0.9739089649522912,0.6343039753010338,0.7652794696606251,0.06935176529482545,0.10019579797327993,0.8943964916397256,0.2527058804356135,0.3971654589686602,0.6043147501565809,0.2447870663117735,0.9345332294677717,0.4900167888271654,0.5017221168934554,0.4386832194955932,0.5312292498386604,0.22124657077953258,0.9030179072594864,0.07636642174751462,0.27180570394509607,0.46249764032271723,0.4695241649908737,0.3685321781547366,0.577846017362619,0.7574075712834862,0.6916628059774474,0.7256614967514365,0.7241256588873577,0.1552919032948088,0.2711158386846704,0.5734129796645666,0.8055533415216858,0.3587809972056095,0.355165971106447,0.8755843900841902,0.6631273484933227,0.1885939829172849,0.3031849374433948,0.7115066689385847,0.5519772370498397,0.5638184152103873,0.08878273351368349,0.3489624892335801,0.20587540661339454,0.5578866629898196,0.9196091711520742,0.38022444099682895,0.6325215824524852,0.01821715372538657,0.11361166591947724,0.4531344489278799,0.8489084804458695,0.817749791771728,0.7671340554360844,0.33411296135750734,0.04479812843625175,0.5515435584655934,0.068660039774747,0.3732534747571177,0.4941356959155272,0.920701758757146,0.7983581088197389,0.04015348699270649,0.0923395864969565,0.8563189130379216,0.4959843119223679,0.830842550215795,0.07054205278781911,0.6602941166711624,0.8196099519988185,0.9606482225514406,0.4640177577285376,0.6051804235124969,0.10466661264739541,0.4535491696798959,0.6262897231574993,0.36234684576574683,0.9834314779912849,0.5361034848134525,0.01640309456701594,0.14100214750376594,0.8056478384918759,0.5511599484896161,0.1155643221148639,0.03656042004198112,0.30035382933871935,0.22133056211682933,0.9072506203883135,0.08731668196421372,0.1122038080724117,0.9138203692426816,0.626978132528992,0.013001325470942016,0.935112504802061,0.8799963415600727,0.6889730429191803,0.5084689681558625,0.898877503278902,0.5858416080606659,0.24210737977736363,0.8892606983732048,0.3021283192752706,0.9657454320994037,0.6492016245677834,0.3139705718469554,0.29629483652472466,0.8440729100944488,0.5436183315976424,0.7130257760962471,0.9309519632142575,0.03618378236572917,0.6430021657757279,0.7449647667091153,0.7850283762455927,0.9794863541618044,0.9349176025589032,0.7346407821553689,0.7427491638061314,0.8521797039650802,0.210161624265659,0.3363923286412249,0.7071273282132018,0.45785914664823557,0.749297359673226,0.22726122052632336,0.1372665432528304,0.35148923091411066,0.3573452315825556,0.20454458232690143,0.5737151566623524,0.9128220413592145,0.5218035937077041,0.9882843885270245,0.5053798607493856,0.14065295866690408,0.5321851485668059,0.11092647337755812,0.9116060427636048,0.46792095384056354,0.23183864748954974,0.9250198677716235,0.035945463717678816,0.21015591468201178,0.09737016041510449,0.5019601720741735,0.3184229845540143,0.871075178089818,0.3826104505383847,0.3029588578225666,0.23412250204354113,0.0873893585773784,0.8057333383100429,0.33658896065462995,0.5093832780526357,0.805596220517312,0.6054619020136423,0.3869674329378425,0.7968665505093364,0.17528326591843157,0.05754087149198517,0.6648794595335996,0.512717998065777,0.014118572483330594,0.8320289893727306,0.8736924306755265,0.25317204570107776,0.8480031066648877,0.2036314622056159,0.01795374212567924,0.9070097549396003,0.5819775338155921,0.7477322073171828,0.1694521587815523,0.974912008603849,0.033554320043400754,0.13034384366408003,0.0266837492152463,0.713057402344244,0.02451972053103524,0.21515114065499996,0.18444341183247026,0.005360681583618909,0.8321765434687238,0.39547575167965165,0.19466193693441736,0.933498835549732,0.9624394466083066,0.38357219261694153,0.8336579515194671,0.33628208208273414,0.36246827712085783,0.9911473867304277,0.7915681346534622,0.7018875188830447,0.42202160437617087,0.6727571111228821,0.9179557367290663,0.1845469439964864,0.7012278694693601,0.38304903129200385,0.4354643721265985,0.16977346772107005,0.6694796474360056,0.023536829192337683,0.650464881649361,0.9327552497915517,0.728915371100683,0.7168737184448006,0.20508277106881567,0.14041577518692705,0.26682849171479783,0.614192693439755,0.14725322693896215,0.9918636621607522,0.49960312113182526,0.9061178413851512,0.5981744748371884,0.69270743039678,0.10534848727752455,0.8173176712271457,0.011740746839280058,0.7159509020910251,0.7385160559537098,0.30587143309007603,0.7500368349669106,0.3131231568137858,0.1868972280319543,0.17499891337492612,0.8683398831693938,0.7130660011486607,0.24063108388325416,0.574387613906401,0.6529582027422001,0.8980087410801949,0.3666025903089376,0.663602322023523,0.8601071608884294,0.9857703311040504,0.539935167485305,0.273463221709058,0.4009905589202243,0.1432198851282993,0.43223859482216387,0.3250835709511899,0.3107223360707343,0.47611415841209004,0.7285886100710846,0.4455647951734716,0.8183076815590655,0.8410443590914778,0.11529527699382291,0.9999325525771523,0.10866040927952603,0.6113053945356841,0.08945834193835234,0.9685769712986845,0.8881394461071042,0.48807619975337935,0.06310741412739906,0.7614059555834125,0.6498374192763723,0.33742709393469195,0.41340528323222947,0.8660156625860351,0.8378074651870324,0.5443115513526833,0.902513355226022,0.91284185399366,0.07005114613082397,0.49488051555292456,0.2545249733675681,0.8436438384891367,0.21707632148384626,0.889862485176161,0.9642309757920267,0.04777117369345363,0.8134641453489344,0.1752147446545418,0.8222562531795594,0.4393577783306084,0.32098147017205125,0.7403670983714921,0.8064075383780116,0.4080548190460651,0.06618079716409686,0.9880297813205225,0.5688581269616158,0.22611341046427635,0.13288260208146174,0.6807817075594544,0.7222323502289096,0.5965676412003273,0.8016145722535581,0.3142257326129716,0.4712048959780879,0.7532722373562872,0.6732284213070401,0.46579818828371233,0.7270889475525331,0.6027854096362404,0.33497417562441734,0.8509962811941842,0.4995478664406452,0.1450994155887002,0.8887817928302904,0.20909490589743207,0.5705614590695609,0.546164908064328,0.6795552175628026,0.7918123008303044,0.5516238188252585,0.24490098304743246,0.27678955509758385,0.09342286834529157,0.271951559484793,0.1830075677269254,0.04909424067946411,0.9387654413283615,0.9670622131391107,0.21219824126631215,0.9284017809403633,0.8926174588435367,0.2003519420203257,0.7103631541100157,0.8212907845474862,0.4340504243566641,0.3210865480297782,0.35450270715541277,0.9752949976473742,0.07979275776553418,0.4656811254985176,0.9658329746836178,0.9104467669006151,0.7161176308515453,0.48992663382014356,0.8376652859756688,0.4013741510883908,0.7464603012650965,0.7888362435873464,0.6660177559880416,0.31254256483286214,0.9691110780383543,0.9560476339139812,0.41566648178806087,0.12475551083094194,0.3608938546994642,0.3359344245561342,0.770923433826356,0.9615908522170027,0.9342803853179749,0.5101581212596027,0.2190805813208767,0.34854174793467796,0.7980146926022675,0.886580107327972,0.1706583197798126,0.6466145808401815,0.808107070184475,0.861654737654733,0.2038930346147403,0.1277220484694721,0.7786189417712672,0.33193822093579306,0.19818791744310538,0.773734837549209,0.16527745692199658,0.5897304358597972,0.1614493557061052,0.9354188115849043,0.9774033530159316,0.9013697621401286,0.09953906254227074,0.8363544681650623,0.62510378033322,0.9149422594319643,0.8546944368086362,0.5582358463867543,0.03924753879950882,0.6959435567762675,0.832106424884943,0.03512247877386421,0.17085692223354587,0.6950830791406468,0.4901522726791141,0.03753256611146916,0.6123154302348677,0.9973024253559755,0.23176705836567923,0.31603139575796013,0.061946531590673315,0.4464813610042093,0.13544451300140836,0.25921087452788383,0.9948772120825664,0.02624566585952315,0.6283678986514143,0.10034379693565176,0.2754750434192035,0.5461032965283183,0.471646225766275,0.9213252715177502,0.10333245370545652,0.03597414731397852,0.58343736419209,0.3508056216874422,0.975847769191444,0.5260130932698417,0.9276438375897988,0.37596491857169445,0.760972356716425,0.4990764214161745,0.12794968295632114,0.7887232226426306,0.12318219682341636,0.7391050212811998,0.6952924330876618,0.4536267423239466,0.4226441681244386,0.1709785516333988,0.8012971657578483,0.906751537850599,0.17286053773116916,0.9521569576948479,0.8888573683826602,0.8318448232034632,0.39233384696546336,0.643859949399249,0.16072056247813715,0.10582592937834545,0.8558487971554118,0.22284060853265664,0.24957511624700168,0.06548018172617653,0.181146509760705,0.031855010696896224,0.9335428221761377,0.11714843877424275,0.30240216585472646,0.18068097003768524,0.758868985636953,0.12986190838725165,0.5147823998217078,0.5418495421699043,0.6997007971156552,0.2025981517490938,0.05112096989259607,0.030782492226653302,0.619181936823693,0.8349505510156798,0.2148946528295712,0.758823908729028,0.6567526071236671,0.7524804054649701,0.6357656997804375,0.9521164517973033,0.9380576607754916,0.766801913009604,0.5838997676317221,0.07756696212612946,0.885230520404749,0.14899192742460254,0.2691708323907196,0.6983960515777976,0.691964626734614,0.1809172401640573,0.42651515323975153,0.8978002546727402,0.9855292082849272,0.2011854286490189,0.8136763429578955,0.7950179587101469,0.3007196211745047,0.6800982373285374,0.03366017621172124,0.6606300858782495,0.07160581363822582,0.5175615031950254,0.16536264585316363,0.006503459461742134,0.8150015424276977,0.7683120512559161,0.2649102533500085,0.6228877807587048,0.2739381626533841,0.3071762865406793,0.11141538316940669,0.3352577456893808,0.6713263536958698,0.05275002026715003,0.0398281160228513,0.17169104951352532,0.40320323208374154,0.25764449343521156,0.4971225995430808,0.8123888900185732,0.936324563639525,0.9909692014662035,0.26538735146005754,0.4872133111927852,0.27914931960509937,0.023248552406956113,0.2323025491925328,0.2256734802671383,0.5502676323283229,0.9271313579293847,0.29410401967505084,0.7118485534650487,0.7638524107757869,0.781913309900601,0.8414940741874366,0.43479981225356856,0.6757072174106808,0.05417414459635417,0.08959315478383023,0.09202552019009924,0.6746183060296012,0.0379364503356483,0.7552694016728849,0.7941562588068278,0.4858200357719369,0.4604019306318483,0.7470985551683509,0.43687718841081336,0.49521908514889934,0.902352698629592,0.6505513078850422,0.9623295743314326,0.1616636532985034,0.9976617371422343,0.8836100819725214,0.6223197501220208,0.23808671835663753,0.41245853144929967,0.004633715389154469,0.4491323353636081,0.11471326698452677,0.5391289054191712,0.2501645538956956,0.5275112063581837,0.16351179410289984,0.3200473414494318,0.7897811624191906,0.26532044375416874,0.8776786332970408,0.4466339007432034,0.9283727160715536,0.37565503793648736,0.7534780055852954,0.9553695000199653,0.622173656146533,0.13589127968735037,0.22841886454843086,0.32789030175822154,0.5551845895213747,0.004306959914169184,0.4591025909589934,0.5917141683429814,0.37731221669333004,0.09139724515497827,0.3472072424050927,0.4044634648791603,0.28390282758955454,0.4245426933233858,0.025136252422198968,0.26866168899276044,0.015189758654920782,0.16007247225077315,0.1641044287272826,0.09519927217668989,0.12188730430679962,0.4729046412002782,0.7474730433173922,0.17274576974389233,0.5208119355463825,0.8481634390171437,0.8736508066029356,0.6123275905307921,0.29069222248710336,0.843614377935276,0.2814235860023728,0.6337309138335665,0.9911086624772163,0.39664377376671167,0.9615272183949823,0.1690466428479651,0.003451293664284316,0.705334421189393,0.580382677709393,0.7156269050235273,0.4836752154253243,0.27206000452785717,0.13238736923138794,0.6279362460030773,0.9760798892869127,0.8471275635139517,0.7698268463843103,0.5545041817957692,0.9466332755660096,0.5978294883135138,0.2628355185452482,0.6472804925735753,0.009131552937117426,0.9011604416380872,0.5923078509394422,0.7402290839388677,0.4305599460419012,0.33492082600630146,0.967451584894292,0.9512999930172772,0.15829588551202756,0.9357765223346228,0.3893917444847159,0.5305006028689649,0.5222625725200662,0.9730833157641603,0.1885871485982611,0.9737918975934783,0.9148085038092058,0.22500081316554454,0.25168545428227507,0.8234421708288602,0.22490088092186844,0.3548713831196484,0.7644178903980294,0.5171811961762256,0.9789900597211585,0.21176455923229254,0.6350460104650313,0.4350674951200064,0.0998757873203533,0.7795311483017797,0.6609741652232768,0.9516251789806858,0.14738979767290283,0.16696434426475926,0.29918821188300115,0.9770227188542977,0.27858462894508107,0.5312490805296488,0.39453186969068965,0.08611350256215156,0.15172474660920732,0.9004094121466244,0.7634420952854817,0.7176668033114812,0.292119848490318,0.3196886269156842,0.5588600985459302,0.8230304210673429,0.6723350226749085,0.7154729289033577,0.5706290829802037,0.4321117043740823,0.595959093680261,0.7672959503232937,0.6248347082464272,0.016846702010081094,0.6853150161697066,0.4540128809703603,0.10423989422768543,0.5845438649534402,0.11065377348122252,0.37683526007351986,0.4493248730680752,0.3762634833984666,0.34306351339415486,0.7570548842118996,0.33699815459008353,0.794121782261572,0.5775439687929562,0.2843791043549089,0.9137655524282746,0.021027478422826373,0.06620016459009204,0.2020943656541896,0.2908820413433866,0.8255557410168755,0.31098557901015167,0.029519138164030734,0.8463167137473766,0.9441851134672183,0.03106594738945878,0.642802056645571,0.3241400398169272,0.13529595900744473,0.09408293523694278,0.8171845767982673,0.35722995700374227,0.10077441546264954,0.2028003932613618,0.3840126421671122,0.7742356696941051,0.07551525140392812,0.547208304172736,0.11138873663586102,0.4144050211833221,0.773678675281845,0.4960683755091082,0.6495506243606444,0.383797568587968,0.3927773878408787,0.7528106148572491,0.6842040149427184,0.279730070181214,0.27170756723593303,0.6529256381413986,0.5511142214323401,0.25598522687260394,0.4056465984116753,0.9939658468520918,0.7907868567585241,0.510002282597025,0.5658659298587418,0.5023891057274465,0.5436628446153942,0.6878068523589524,0.08560078531482396,0.40594070142545724,0.6522211282286301,0.7995837731531059,0.738215454271598,0.29229142273774333,0.31245893549236103,0.08004700687084054,0.29730269430809564,0.9273670254285786,0.17174619408613956,0.1527397573782372,0.6131309654553001,0.4649477432511142,0.8031228669769594,0.23604578500212647,0.5028522713631765,0.0476856849727878,0.7643646333018985,0.18448243825616362,0.8551916892447906,0.8894998342326934,0.8244306445376581,0.848746663530374,0.8485751732163831,0.1965533900138945,0.8345515452694896,0.1282387358765682,0.16297255999175975,0.2016601583723685,0.8324270680362209,0.9544754267456137,0.1063606955612606,0.32022822945842355,0.8660397058008475,0.6933233250406168,0.17816513660766908,0.6763927786303872,0.513272343475417,0.2224756926139828,0.22425778334248814,0.48134041825632323,0.7409423180198749,0.010793054655848566,0.28256039957753654,0.40390776278368423,0.6618205820962317,0.9273198726218197,0.33311646299546105,0.48390264642713277,0.5118586504488822,0.8869544111935788,0.9138767103754848,0.8588861657501448,0.6196245655181583,0.4542549291666642,0.14343267811445637,0.9207828299135346,0.8503920984094402,0.7325205233651526,0.6958512676633679,0.9953161207896539,0.8569852205985442,0.880287216246078,0.6867355024323389,0.34996905029598024,0.37250639424960075,0.6568683663852166,0.8379639455645538,0.17520671464033533,0.040036573975404055,0.08316233307809373,0.6969072203735178,0.01646342766059039,0.10468346202382928,0.19995738996073809,0.46921505440816635,0.8449126752289953,0.45938827784172065,0.49888193045177043,0.9345227841722934,0.5737455179538604,0.9653488275609503,0.24789975229399763,0.04148906863448443,0.3114603542039647,0.7894581138626746,0.906917458991717,0.3717136977948752,0.9444609964640374,0.4921597713983352,0.8533916149515097,0.27011229916072677,0.18549501845489402,0.7418876659642517,0.16586554955375354,0.24279190820501428,0.06084012994872845,0.1937027155432831,0.8892935582061035,0.6064651600001572,0.020811854000786,0.17380202705956638,0.49432827545852187,0.051584686067008834,0.6692467050935083,0.7224778997053587,0.10803869148141443,0.11008689285861073,0.20612061374036306,0.45724762975735356,0.9078881732131647,0.3049849574301675,0.7151036616214386,0.6582534436115373,0.509356636234805,0.7406168087729075,0.1069246259130252,0.3174539991340981,0.9244706884634866,0.4682110741032952,0.954964148175093,0.7644427450574356,0.4089299169641656,0.21629163579479838,0.5178047569465996,0.07798097978983409,0.9257092140938481,0.7754800297195661,0.016122914520714238,0.15398605662013742,0.05824835847985299,0.9633320226505582,0.8284704289605194,0.6507863208113498,0.6081455937179396,0.8211036812093657,0.15000819167775026,0.9690713339766424,0.7780225226733315,0.2712164794710159,0.2780790324987499,0.40863001185439196,0.23105552761896164,0.3542574458649803,0.8175225131545341,0.642322652334236,0.7103421288309615,0.8027761548071997,0.046344394800272415,0.6202781312624421,0.29776686269460595,0.11890272224228182,0.8814134581713078,0.4308480480706627,0.644183057267119,0.15459470882383775,0.004775261579305079,0.1077565570293364,0.614798386485067,0.05988929237173979,0.2210459428423397,0.12843200041214198,0.7932335094297955,0.6541520229148838,0.04307922408648435,0.7006200605394226,0.9518380158160482,0.16738137653187057,0.07566757358428422,0.992661753885792,0.8415051885112848,0.9015517158725594,0.3819206745601238,0.9570540239871628],"lambda":[0.9369321324691442,0.2714290720393091,0.4113036920544044,0.197373558166831,0.4971908904019202,0.26384722681584205,0.17336025011855738,0.0059304068765506646,0.8556777017949688,0.9144103910821402,0.2598443934438148,0.1850187677706545,0.09118648769542936,0.6498316324000748,0.7603019701582916,0.38831581059389086,0.5290710956345543,0.9991374932003312,0.7523332626758119,0.15643474892039633,0.11403436510905984,0.3751055842728339,0.2955402260921409,0.3604598924007989,0.4279327199210321,0.580633129226948,0.9569957938769473,0.5048222924588877,0.8590976698504493,0.7455327412354014,0.638094666352029,0.47664465895872454,0.7890071750835104,0.12219588307505025,0.6928442671626791,0.28353660498428224,0.5310546681717676,0.9475083021240642,0.7591855041453142,0.04063175184068202,0.9117168977348531,0.7792749615245302,0.9668731180879002,0.8275659635703609,0.7436562860090528,0.6966303512806504,0.9880431815202197,0.9709913086211746,0.8918638018974372,0.32279387696085027,0.7779489982334475,0.6582155418257003,0.7276521693372977,0.22680536380214122,0.25088795587209156,0.25441484019623073,0.8984275847671266,0.753125507785309,0.4875609005015411,0.5216673139998831,0.8408750555160365,0.18531498193960805,0.3748475490126866,0.6344646130795701,0.04752749055765926,0.7900098744103707,0.5034538856685742,0.37071839036548027,0.5662878431311091,0.8146556168316297,0.7337183764530446,0.7389736112059813,0.8284077439189825,0.01961493903440026,0.5764237368195246,0.5804539907723076,0.3183125335627741,0.915751873150273,0.2239760889191691,0.494306703412029,0.774016941369835,0.04440689689199728,0.42661167807643485,0.6738381943761707,0.09698464281465591,0.8925893700534473,0.29197380472809176,0.464823188480576,0.9545773761315615,0.3952158346172905,0.9804163903464955,0.3427680197652736,0.2851703347665666,0.8428905646213467,0.1561064690707692,0.5997635794362526,0.21311104295954886,0.6449315373787925,0.8935863839399365,0.5957474881537972,0.7938867613967691,0.7760681705387624,0.7540193711997023,0.7700887979291897,0.7284984506609105,0.8635867230557461,0.053390634934257664,0.037259262770354296,0.10866567965671359,0.6246522825054419,0.658329279717625,0.07415012162530954,0.7348459086469838,0.539900758555804,0.40853582175391057,0.6596823901475573,0.44200290393025576,0.2164009634595312,0.7330205085077943,0.9489390542083496,0.5234778318239726,0.6405356208906339,0.24810534584384514,0.33093827069467774,0.6471116716345515,0.5167752662576897,0.8519670847555123,0.9805472261394019,0.220868130069094,0.8958477989175162,0.7935274019678278,0.3594046728380924,0.4013245677462478,0.7057790700044266,0.7541807431400875,0.5373028956144246,0.38354950300642465,0.5863104708684042,0.5981536958553961,0.3053162600098758,0.10315249385270064,0.751332235258352,0.43263528010701524,0.9519588984096838,0.32982403702178775,0.8602630778969764,0.07610940494857976,0.3823482403313456,0.6138447019271107,0.06516802036280223,0.6106740616418587,0.4011275702685524,0.3251527723104002,0.9514110473232451,0.8360273169556245,0.4160316788466196,0.9599974714638033,0.5850741985473435,0.4178728160552079,0.7317492373689725,0.6406768603787589,0.17733813809115961,0.2686717871336721,0.23464326517560363,0.9584245133269225,0.33720128618157763,0.8181626276211105,0.394914355891107,0.6615359525158071,0.13114309657581824,0.20251698774251747,0.7476256174699725,0.4978448559271622,0.4732565460571403,0.6992113231806634,0.2677235988073914,0.9533091241705813,0.10058525514849426,0.5026201424213508,0.06786086970457061,0.9959511550044369,0.28280521882705933,0.8943375658121397,0.7844475029594347,0.5824925212572976,0.5252820720292259,0.911339312212619,0.31961426230420176,0.9228253061475364,0.7673181345886326,0.40379890973378263,0.6239951057689275,0.3049819787037993,0.05359824324593343,0.4742189692341554,0.6593962588237794,0.014512730223864345,0.8289409473164644,0.44475492678326844,0.9068818695175158,0.8517317123758152,0.44562114651262164,0.13132293521081806,0.7841946131173889,0.445965300182281,0.9478892080692658,0.4680727312336188,0.972997043662595,0.4954998291179029,0.037202762742529316,0.1301028775583426,0.07930943874422369,0.9072289430898637,0.049690622208107715,0.540615780008646,0.8331498491723026,0.9801073217870009,0.12767449173694723,0.9139141150879488,0.8898324069516435,0.02417607392409815,0.8455291574894226,0.5177971543944209,0.5592937572629157,0.4447271415340248,0.7114929428942232,0.9122626869479642,0.997129880078405,0.34632970306750455,0.34094760193033635,0.1982838704625991,0.6761657474710157,0.9262290787626739,0.07548845583399899,0.5138755456847972,0.5799230706401293,0.32369441984476244,0.3888007172015282,0.5846288472908416,0.34220395543581206,0.0884099647003953,0.8349726616618001,0.8162006822574575,0.4731340515479261,0.946449041646583,0.2042826062284222,0.9714910858603751,0.22962842705448638,0.1248453813812962,0.07729391886094628,0.6184772890038459,0.920390159740841,0.9652914063412443,0.28046851727040045,0.21571394068285032,0.47706431361401735,0.5138478699007061,0.7315110109438852,0.5509983677857866,0.3109617273875056,0.06259389423502149,0.2426848051116859,0.5908380653410603,0.06519883793877712,0.8666595052834856,0.6670203831060728,0.340595820181661,0.4344535490673065,0.6377427474488753,0.4319832461472124,0.5231822577854999,0.13471378913112164,0.8428452396855399,0.9532380596909731,0.7141721722878305,0.9166852639945258,0.21350785623529656,0.8675153764050341,0.865180377035629,0.4487999793307038,0.3909152976956072,0.8071452427135983,0.46917912542125606,0.2581462560342309,0.3936387404416106,0.8537747915385272,0.26430625379845973,0.5532159453201655,0.9724045409632933,0.14737014231456103,0.12448986296339704,0.5077934118531082,0.7723931648523947,0.0329563178434682,0.01372386799288039,0.09690650040926196,0.8678573172529593,0.9129155085108966,0.5225109232313216,0.596164970942267,0.006226701092691744,0.5679154001199389,0.9483558343142808,0.12525563459269895,0.03159038740969944,0.8178375729003984,0.3273128527037745,0.27435731750401593,0.10619305751993369,0.9171158387933807,0.9608542239780107,0.5776672627748485,0.30494085282358774,0.995048484069992,0.6460179901691028,0.9419456781813107,0.9596811808466361,0.18822700989675134,0.9777807300861616,0.5000648049504395,0.7220083482795798,0.8812862219013315,0.9430441480073337,0.8640330263040088,0.06491354235076274,0.19343721421708815,0.5360036046215981,0.10417032567913287,0.7991357181506245,0.3008256948301382,0.8332106610075345,0.7794022465446346,0.8066948026079297,0.4242992978138833,0.6567694301487768,0.45704161915705255,0.015245591325355967,0.959178469017063,0.8021958424262414,0.7191313770371948,0.38738573717987856,0.19071996332906238,0.4933867250710058,0.9220723994340361,0.8284302663807905,0.29753594407961104,0.8060699424227307,0.274746834372112,0.097763373131325,0.03090414647163131,0.2770353382593953,0.4986894976219338,0.7330685396298253,0.7591279091074123,0.12955858638626894,0.12409377950227829,0.2840149447106577,0.8458091872627302,0.3742006602886834,0.13242973073486897,0.4234708660016484,0.3564451350566402,0.32750791406506696,0.6917548124369433,0.7831210080269628,0.04407482897142012,0.8061298127143122,0.6411932909731242,0.24780471716469488,0.4047940623358073,0.48528627145343073,0.7373530813819127,0.4150827285598362,0.38628448769580936,0.2266884413550505,0.43051987358112265,0.037088361776522305,0.7665445251380512,0.7289295496613473,0.39796873452104675,0.43688087276525356,0.7034492772259868,0.17208716767873344,0.5951492522288642,0.9941753532808528,0.0037310796481662134,0.9214449961751274,0.7995727866016515,0.3691714445519949,0.5774538361360939,0.6202423287610124,0.6052967798226188,0.9606698001886247,0.16922517333357856,0.721512697858272,0.564477933941266,0.7807158092195072,0.14317444248292643,0.6770394819500059,0.9968485476469402,0.4880173272758257,0.6087646548596948,0.8252934417061164,0.09647067399484688,0.7858517845146187,0.2847595286866045,0.1681718454859018,0.01630420906065977,0.3736660397606786,0.8183041005229306,0.5867891976183994,0.35704410953161014,0.3850960665180936,0.5298901647139842,0.93808183329457,0.026935955798519373,0.9500873473311733,0.21264924293226795,0.10521844082652643,0.11469687010826934,0.756969578253393,0.16139081202692585,0.5450335972844862,0.38763977314928244,0.05127275192047298,0.302699254564359,0.6100938154775177,0.023976077853190336,0.6369655597379476,0.49873673918734385,0.32801740550031133,0.8767333725863287,0.5954264413467549,0.03608697518406867,0.5589338309207335,0.27896418796163625,0.7963068839753664,0.16412740811452808,0.4341049352813249,0.6129965468177991,0.08965499658759368,0.9097930149396056,0.34156772505846544,0.9125531809723169,0.7178642853877606,0.3935152365729253,0.872731026309576,0.5409208278466493,0.5187377832672895,0.0961493701361702,0.10567631608122108,0.03341453393054161,0.8167099488631524,0.886758881517844,0.11858789296401118,0.9006957694787114,0.2773858325835439,0.10881208279404331,0.8970284855658872,0.813880832759968,0.9370679405534108,0.44908899197679286,0.33115037064533714,0.35436553323732567,0.8337677118282991,0.8956251477583084,0.2268362035828666,0.3256052095083648,0.6392762776299536,0.10224606251768598,0.5353556714860683,0.8954156890532003,0.8206571094161892,0.5656126008838716,0.2972460196927471,0.3351170027766275,0.835176591291884,0.09472456119132455,0.7796651045398384,0.6730540402615293,0.01867875113925188,0.9414695696890623,0.1045370778842265,0.5358071169123138,0.6424038617838754,0.6079347473791004,0.24332399756440948,0.010301633750401828,0.5641441360494608,0.30824608852880075,0.8357706765568287,0.43068791684410157,0.5939225106003352,0.5574470506855962,0.8314099329836036,0.5848234433331321,0.8789021844278073,0.906968314128703,0.7064116922897425,0.5184526046629458,0.10582496268525654,0.8486743536490422,0.26597379781701824,0.8700304157267031,0.16037146785302148,0.9522371696143692,0.016323896474235378,0.32395166105709605,0.023581545037989926,0.24400660267898644,0.8873261246593644,0.44355835861805937,0.5019656643484349,0.79211445568239,0.2207775061565842,0.9963775941458104,0.8005949368146665,0.30323417796775676,0.42369811300096494,0.41908817121171715,0.8227106398693169,0.8484654987733196,0.49758787373226077,0.13642580244952884,0.1885003964880969,0.4694839246774116,0.23825873007953402,0.0795654514032309,0.9865904543330171,0.3690231182437216,0.55837247093226,0.8912866717811403,0.7484466813580446,0.3872666201682029,0.6107937515586532,0.8656468235788919,0.3320134817346323,0.13120172127626595,0.7585000459253206,0.6889078509455029,0.7092827257577825,0.20147546217714063,0.2590833675417197,0.09290059030606579,0.2504874558701651,0.6721671214441931,0.4750466643501394,0.20564633814804334,0.8761397338852568,0.5617102447479874,0.8317275700643187,0.740272354763668,0.9555574418098358,0.9260475495293492,0.42221247739227574,0.32762965543779465,0.026942087827601657,0.278007523094429,0.27399157370685634,0.06389206137516967,0.04499972475997893,0.6126812580557384,0.6283197537829401,0.0501024942571473,0.9919566265841067,0.02221119379073988,0.3967548125656517,0.04379736255536448,0.6708637256103345,0.20558653022815876,0.25640352234264263,0.052765713636765854,0.07043972651659858,0.8055480896049121,0.25453068816708346,0.8117618957948232,0.6588382383904472,0.8873738473908095,0.265416119968084,0.9012127307560005,0.8107699233181196,0.2107182250213877,0.07338099154619049,0.6821916000412132,0.2755517214173915,0.15000061623452976,0.8911489693140453,0.7650885222854271,0.6740060231428893,0.466849560813263,0.9900441727148543,0.5721161068789173,0.6775627598607594,0.8078874857054348,0.9345560973031928,0.4807193735805939,0.5250075490479091,0.6199015488541937,0.40180891015075826,0.9483808737555202,0.05276980338513382,0.34797386657656015,0.11806989279404356,0.5926547445771801,0.8237208224211756,0.8295975982544532,0.4650188084518565,0.23937558733898112,0.28747246559962103,0.9520186985601449,0.08187728854954934,0.6527792349041894,0.22185994418189114,0.7219754084525423,0.4270391166341114,0.11316032921007357,0.7507744622855153,0.8205348318641326,0.30696067213658296,0.1856995839459772,0.9764715701086706,0.5201732009794482,0.38284546288355537,0.018650396570441874,0.9260904321388723,0.83974615671968,0.466823358490853,0.004834519001180704,0.9385202853846168,0.4548915550635759,0.09583679775782428,0.4834118517252848,0.0010521678709787263,0.05404427534681289,0.2813030979415079,0.8291348516509296,0.8283226814995497,0.7158766674121402,0.71505085359664,0.17336650765276973,0.27109462414654795,0.7842101141429461,0.44561756332423874,0.13240623591573186,0.8653115228317609,0.7655922780365445,0.8999830280660495,0.048366708967960914,0.2857746508561554,0.3423127394946337,0.46009959218249774,0.7619141956276001,0.3846067884098987,0.8623247298670742,0.780895422297206,0.8723648935271147,0.3630403512896325,0.9953548935325884,0.19997695388045056,0.14972672057511782,0.39906996940885797,0.6357662079658091,0.43416274664606735,0.13051044504103104,0.8988450516810793,0.15011686107410793,0.5026451165458548,0.643453554192138,0.6107380188846729,0.45217448984426345,0.8993158716765808,0.2251302731449334,0.30988598904679554,0.7016182371124635,0.3457673241431243,0.8895940212493185,0.6144070569901756,0.49089931301570155,0.34586407058429613,0.3009542992712675,0.8352627001789334,0.6236313452382336,0.5753983509833034,0.2275316287670437,0.6078575426184007,0.10888625589932555,0.4913489912213005,0.9108913986341105,0.08081797349421005,0.588646751095663,0.6129906169245873,0.5335396788970368,0.9688010301195165,0.6128116821778538,0.17959442893502153,0.8391536772896773,0.8973788386502886,0.7770309603031156,0.769818309514207,0.7940336172038649,0.5969963425333631,0.7581317053786063,0.8598120641712079,0.9073725275718698,0.35144440974480684,0.02441212247468494,0.2745204726874415,0.2687608992293382,0.8231956470388841,0.610890246482336,0.3553909957873924,0.9244173186507385,0.9779943994053168,0.714432371176956,0.6117879032670008,0.7259444131529742,0.6210100537686343,0.011530056878899408,0.36419527990187417,0.1849623944652281,0.2290947341009446,0.10049920603592621,0.3029049029790407,0.04017478001260821,0.7075246139341713,0.2506808755018781,0.18778105087218666,0.5198042668012588,0.6259098591217653,0.2639605216966783,0.6873598704693664,0.11296376697093957,0.10248845583702804,0.2493747079934696,0.06853738408685106,0.07261632171896237,0.7373583409734212,0.06216896571562902,0.04057003188221242,0.20786899609827048,0.47613980226486463,0.2830868069062715,0.47032717175764205,0.4437228521335257,0.4910647949792366,0.4514676762093037,0.06034024707710994,0.20727285535298634,0.4694948808849704,0.7496401214918049,0.8577689069270078,0.30716579049534865,0.25144234532882215,0.6689050667348362,0.021629054627025024,0.31548192578494616,0.6140793086793759,0.8385443649661986,0.5624258761390697,0.7180908479373465,0.7015083303058476,0.735887786158677,0.4145297494839679,0.9579633916837351,0.19142299162804344,0.259926827413429,0.13882158397941646,0.753898854536144,0.6630531746437114,0.7343603607911837,0.5021095705352776,0.40373752723280876,0.2555086677240541,0.3667961057261977,0.2421291466973723,0.13055215705138457,0.5443397088424529,0.9528174438550494,0.49170263646151535,0.0018263537394644924,0.2050659925044116,0.03989548775336638,0.4414926696958468,0.8574462760666459,0.8942230627178525,0.8757773790893486,0.22307087973606077,0.12541606269619154,0.5578143356134784,0.1662520859634502,0.8193424516018926,0.7469104006414162,0.08843261560106774,0.35440150815619953,0.7320584747643137,0.9065411776235601,0.6107972705388547,0.44917386024434647,0.5403242151588805,0.043369644645666394,0.09870183539335864,0.09522031776255901,0.22125229027664606,0.48853442662141067,0.8160468292717151,0.566328237180775,0.19383409685576303,0.29429065816630207,0.9098225875760193,0.6282296043354565,0.08696350930048746,0.23865845294495136,0.49754369907505946,0.6742938655872517,0.7164857986193458,0.018229490684528615,0.8792492370236944,0.9442047786740893,0.15146737839433322,0.2949388673412834,0.9806424953017827,0.0011893095252737407,0.5674445777136512,0.7369977513097743,0.7003366242896605,0.11404855280575998,0.14394780062055124,0.8948885910956696,0.4690435390594887,0.06946364110376058,0.7412243136473837,0.22149292826087996,0.13295492429975075,0.9531487348921228,0.15449310422141638,0.5506905081658504,0.8510572701873333,0.26715209875565615,0.24209573417606411,0.1200656860469127,0.6464119737192098,0.1953690168132023,0.32531613073617516,0.812774040184415,0.9928923248966455,0.944051852736417,0.05808983146793234,0.1795541426609797,0.8968280676887195,0.27052067018989545,0.7782640950097135,0.5533035391384007,0.752793524107906,0.7644036026301233,0.2458151510896074,0.02318455122602936,0.2576079408897951,0.1540841785000424,0.781670420927334,0.10307593438709683,0.013644998049672452,0.9467985619689812,0.5447088947705117,0.4517010882551957,0.4458281990065962,0.7195402497112757,0.8687193583902539,0.3518912026691716,0.04138874658868996,0.9355434601741384,0.7714031812848521,0.42363015744644605,0.8816299333683837,0.5258870845269041,0.6166604858719651,0.6073560369793081,0.5319227963881399,0.21722894493593214,0.012398921652962525,0.5255221935533345,0.14254315286449026,0.13945507851149763,0.3387498146207415,0.6469660613585992,0.47981919107242255,0.7081071894139592,0.34348189000772456,0.05899111757886821,0.1814385641347538,0.3736987769010429,0.4439988640314412,0.2546457275970986,0.9741894384858147,0.4208870879932365,0.8739146324157738,0.5837005154870858,0.027140847088864994,0.5370078547789108,0.541816084541646,0.8979085973911567,0.622280718020479,0.776015158976896,0.9136204954117575,0.032654976992207985,0.7316120489315812,0.14162788641672552,0.16819689085619438,0.20385823195345454,0.25284145980536166,0.2251000853669709,0.663287291887223,0.5551753257969279,0.06124116358136655,0.004236169642276799,0.6571211425594672,0.3297108148067145,0.8083913958019859,0.37426716552629324,0.20868032246924195,0.07538476705084207,0.3908894591241898,0.31905191338460503,0.9050809749780098,0.7808855582700012,0.23763603674111122,0.9137637003576295,0.7757831767017662,0.11623420497427062,0.7888459718677132,0.024486780025113397,0.9401397968461231,0.7841494988566655,0.9670682494660903,0.5896112321662901,0.3944926181912112,0.04482966369017305,0.5510505289475751,0.25906237717838887,0.5289463651184287,0.2867792324729721,0.23780452982334577,0.0682987519920828,0.06437815263868285,0.3309586362502066,0.7634463031610055,0.05616176762990843,0.9269680736380708,0.3153780780379196,0.7573049596162171,0.3337421231986202,0.38864658695070875,0.5469786471919318,0.8519070635513273,0.23404227378829146,0.4171639907164313,0.6949503575400084,0.6239873765357984,0.22731843370469007,0.6542087212630143,0.8372802942651998,0.29779917970491154,0.5113008491587041,0.7866142251832593,0.4877251582000097,0.5996490232254823,0.423087831267984,0.026481879416660137,0.9017906917531711,0.3981492654850576,0.46409827276342774,0.2123137863871365,0.5795139491110299,0.5889434449560642,0.651013258994986,0.3134784415849401,0.9144839190280176,0.35031016440973484,0.7115049622607923,0.7504231215382298,0.5980834593833313,0.9675638919746519,0.565706006376292,0.18823693233128647,0.3805871022640661,0.7961599045388907,0.46509264817693396,0.11966785151156101,0.5208317572581083,0.6097542121778081,0.901188471168455,0.07979066459664197,0.5343087463202858,0.9950432703031189,0.005540595463554787,0.9021344669305575,0.3607428605501577,0.2799630219529452,0.008666263777031613,0.6595676799100993,0.534748550219132]} \ No newline at end of file +{"expected":[1.548688681211891,1.2495850146313812,1.2124548473458703,1.053343680200027,2.146180865724732,1.1442253335747115,1.0794129993749275,1.007022977335736,3.8358831188197198,1.0947172364091295,1.2732241283572416,1.0383946289441088,1.1408248465031336,2.07080689026056,1.5098755890343767,1.2475179469892146,1.1016388569314388,1.4524879078274675,1.6942027543674563,1.0837872607547154,1.174123702245259,1.0592987941977718,1.036100526054362,1.090483834736303,1.4684686893382504,1.8426855258124508,1.5610436942146175,1.3356507304323482,1.2108286197270761,1.1986073195316804,1.0867602196608908,1.9282042809568813,3.2303824519025452,1.045438615768893,2.1130100172386843,1.2923981986307587,1.053473143352373,1.8543153874249394,2.5528759847288396,1.0066257426645504,1.2327248439696046,2.8952560557825224,1.745000922793042,1.3729889567597673,1.274089963524296,1.4888571423131451,1.1360961004404495,2.4839264965578622,1.2999297852275193,1.4206936942202426,1.9720759400599153,1.0305137106431257,1.6600708674642934,1.027073825048747,1.421815696072216,1.0603330586046689,1.2241594373886175,2.219080053755167,1.710006792422257,1.0589271204160573,1.331944908116847,1.0409927538328485,1.824770530088214,1.1955647026192155,1.0684933845804017,3.279631831105449,2.3077117892003365,1.1057549571116339,1.2881561217310193,2.644948456196147,2.7382407406992972,2.0062351650365255,1.7356801653393619,1.009519817805238,1.090810163600123,1.191627587648678,1.3304643371163203,2.4789132415318527,1.1590263404266015,1.140635836119553,1.6327767539307767,1.0457638830939255,1.5183328023760132,1.4513960268756718,1.0358738521178572,4.267301061835646,1.3098925473856249,1.150839178542702,1.2384679532437304,1.0288643022163415,1.6796785303053943,1.690964285787818,1.2390383294361822,4.239105316107268,1.023334443615961,2.5219060536434657,1.0606119318960936,1.1070345934685497,1.552088148469657,1.45609943689111,2.1630583386433684,1.2621037551097862,2.0190547861229757,2.30137319510517,1.9493355547522542,1.6158098331722348,1.0260812327633064,1.0027824780546803,1.0292299200458648,1.999323609552241,2.9597610268664534,1.0678800737634853,2.3274545667159905,1.0395334270963321,1.043994790238037,2.5955745123979206,1.1355054043028787,1.1112856104259425,1.8374989670443227,1.3010707461077364,2.2463567801751094,1.4993603987889768,1.1754561268736394,1.199897082345454,1.5740304910578709,1.136518437605516,3.4898801237838226,1.0809218789836308,1.071419263266134,1.6934878152259962,1.6088310159978727,1.1736924648272222,1.3687723743638287,2.224348878325212,2.121118259698039,1.7732556388940224,1.503333495727225,1.103513838546365,1.2047609872293976,1.2666937666840223,1.1362075780137648,1.3830101687044734,1.2025967799898925,3.7924289776183637,1.3638557445843464,1.1954803718206501,1.0273218578972894,1.4866382268526395,1.571780792109959,1.0505946197321583,1.0583350115122276,1.1823562559475207,1.077162169929223,2.0353785740659736,3.528907245520728,1.21222994028295,2.3327663272689305,1.0108141159568333,1.0515625455015498,1.5211471901612619,2.355246729140303,1.2515753732851054,1.3633376343758095,1.097553043851084,1.0448902600490244,1.2816607501654211,1.0598723485962287,1.1956380418510086,1.52619091494553,1.2191623547450239,1.2807597388830487,1.0311045675320338,1.049338657155194,1.8984076026326857,1.5667027268781115,1.4144906063468665,1.0721618953485919,1.098651559022845,1.8929449173179171,1.1157045038540354,1.8004930922951399,1.2651312988856995,1.1037147574230515,1.568602709243453,1.6605538805710034,1.2578314832116797,4.596205701223515,1.254469883158136,1.015379080151586,1.1232123793877653,1.648658619474197,1.5821766959887356,1.0380690867702722,1.0019978292913092,1.1807339297300314,1.177455872518904,1.0216741258325555,1.078568174451737,1.054229929956661,3.8757101049406155,2.1015253192804293,1.005848528230652,1.2253447690124082,3.0234937474175374,1.5562047718340373,1.8742478674367629,1.977649146291897,2.1705799362172735,1.1453757552900887,1.0547711634458146,1.0469611363788158,1.1377085911764222,2.2915266350887378,1.0184973540912394,1.2049527247801561,3.018038774174135,2.0296434916442747,1.1420230084544802,4.073960825490233,1.033330525672688,1.0220508465221865,2.548400080666017,1.8542070430039301,2.5349013974340013,1.9897211060370872,2.1636137659922587,2.7320297492463483,3.822453720068396,1.0843695022604827,1.14607252323251,1.226134920441702,1.4808854927323223,2.810101557575897,1.019448159324528,1.0785402397493722,1.2766678165396794,1.1491657434646838,1.0922552594596993,1.5730224219559354,1.665863445401599,1.062438238091967,4.088927419537671,1.710431817900434,1.0740699555120745,1.9445318834802963,1.0242544218976606,4.245609557797378,1.1468426744907672,1.0331105368122906,1.1248335111305963,1.0228939784128683,1.2401744267035741,1.103755796814425,1.2006381338650158,1.0842446920962396,1.940354423325777,1.2706238307003248,1.2954415226313813,1.1564477059081022,1.028804548069219,1.080595585798713,1.1019855326395858,1.4806375116054462,1.0840653068523,2.056788671779776,1.370496145363795,1.5144353288168841,1.086796328270557,1.038495037578183,1.5036610508464077,1.4196918323251415,1.001917291991353,2.986175239759576,3.7828326495607687,1.2284540160900919,3.399934017233734,1.0494014554936104,1.0158399466861867,3.588696823437918,1.4252692447442663,1.544619757638996,1.1607239970655658,2.169688790446585,1.0088477960616151,1.0563318597983873,1.0233571922007312,1.316447104652506,1.0138270913701366,1.2629181483111125,1.0302996317404927,1.000669366368846,1.9333923435954314,1.4545268092537975,1.0071074583698492,1.0214072317927878,1.1697640000038863,1.5004101091743332,3.2817048855442197,1.232278976651185,1.2975106806077588,1.010605897923026,1.9845479917211069,2.624804444066992,1.0679750755331958,1.0307793556265135,3.421788794968114,1.0685874340877908,1.321555263531288,1.0508145273287448,1.6494672867533624,1.194577993561867,1.7343702659516218,1.0072889090096315,2.4890318272473166,2.7069919368795263,2.7471078062473504,2.733999496233536,1.0437766063592644,1.1588203532192727,1.165241140102868,1.8448195382229766,1.1500595263446511,4.951264849419996,1.7505873168925064,1.100459463209592,1.17161779285367,1.708357346787583,1.0116403156967007,2.7468132007554367,1.0035590518245197,2.3908473879627055,2.343750122910762,1.3346133614902067,1.6063674859919903,1.27314157384551,1.0984758198312887,1.0029198965444281,3.767823029035106,2.3036016550536287,1.2160901178871437,1.3507065461805134,1.192073513541342,2.0497846519160845,1.5042826932484519,2.1818968707197226,1.500299350950396,3.8732623335974807,1.2173666634993454,1.0312250474728513,1.0153619129492952,1.0435818431877029,1.3094965434333876,1.3252559075462165,1.318683703932567,1.0822104951819835,1.1423044082382012,1.1728515212813493,2.9193273752477786,1.6380247589126506,1.01631520493963,2.0700332230573513,1.0417626112704004,1.3178943615626935,1.0668769515779843,3.5958164474925405,1.0650839157608274,1.6606348017915646,1.0426526896035921,1.3268606273313626,1.448428878093472,1.2150236592130446,1.4586240613518355,1.7713519191276739,1.659526736872328,1.1782040520151018,1.8795885682984856,1.0568716917017769,1.057198832029673,1.5947790836180484,1.122266998465017,1.783878200927127,1.1859492222507573,1.2800636134310865,2.626862837641876,1.0498482201229493,1.004696141159277,1.1929850516093354,2.773077707883085,1.2259005407906916,1.244277138496703,1.9743177719162706,2.1180066084447313,1.622667697982062,1.0116456525519872,3.3751009047764473,1.541152773172723,1.2190617802212487,1.0205557847994158,1.9355639912599298,2.873949115881918,1.4890842155622463,2.113309578374153,1.3562144517431975,1.059786989924259,2.418746001795726,1.3145937066979663,1.1049210721778688,1.0175827826308537,1.3621945037251453,1.3848706029855533,2.197804169010255,1.2603078453636123,1.0619793576488221,2.135904326716471,1.2437887434625479,1.020936922465175,1.9944156561105664,1.2298690611851812,1.135462477053375,1.0880911270967724,1.2337460767118,1.0528130957744877,1.0548229298604404,1.1287902768461437,1.0103499674564325,1.0153482157296103,2.5852133437468283,1.0398598543972581,1.162501533014561,2.145338789391909,1.604546203971633,1.2146890624801048,1.8517027635334455,1.047026587381247,1.3549691551939622,1.1114025606172075,1.4032710350206175,1.3114457776829023,1.0367158492802255,1.4384520781799521,1.1570416357282156,3.862969891419964,1.4296665956708627,1.7805332488690442,2.562786436682005,1.214518582721933,2.6334961155870156,1.9146904404323177,1.6339003883984393,1.0359064401266396,1.1886809456366063,1.0549673828120292,1.5233567404712918,1.1250471359808254,1.0528909047605248,1.4327566602968385,1.380238350569662,1.1922288099303116,3.9998260479398864,1.718895748801453,1.2579929340376796,1.2059528173171963,1.4983681786349892,1.6580039022189301,1.1678354738416163,2.257331048166475,1.3259197970925674,1.5606876532228737,1.1555578228160353,1.0140271816072863,1.8792938671507105,1.422613084694858,1.1970749579072024,1.9358555661264853,1.0548738349382074,1.3090049203131078,1.157582460941988,1.1579604089647693,3.6412652431526924,2.676903970570928,1.001956860525953,3.425967073294925,1.0950326330829094,2.2297859400760505,2.3813477962359695,1.5753602444923076,1.0097873341250818,1.0104131724832413,2.0799550205680033,1.011079666545223,1.1685008808520345,1.540885218101524,1.4560022160477684,1.021548908225347,2.0183696473217942,2.719937493556588,1.2576445131972864,1.4008734348885516,1.0461780412137587,1.3388177797904435,1.0154678593294957,1.2854755455348195,1.5735334266826684,1.023406552553303,1.1505644489848006,1.105734175136266,1.0051906504983574,1.2653576755822777,1.0143124095228933,1.4464160400257846,1.1014134562781006,1.016379821894748,1.4883249688910651,1.3949455723710178,1.4405673140963664,1.9930477098194923,3.3998964694545846,1.1484289502429348,1.621200386813403,1.311581354565667,1.1188446162813541,2.7694671288534085,1.0674034689682805,1.1609725819532322,1.20841553526818,1.3092947641817083,1.1335133811629863,1.0149467984964484,3.3600538917421305,1.7242222186128657,1.1111161614738474,4.130085846093261,2.9213232869641264,1.6528467836276273,1.3410391280919223,2.1866810306527964,1.0595971578771723,1.0147536084097042,2.7913686107051983,1.1876376044817152,1.2227072364299476,1.0137275314383447,1.0527981937124606,1.003011514382857,1.4720095303943928,1.0871299691830756,1.1826308494647813,1.0415653676743217,2.7051878297338243,1.0810069795818038,1.7506389669259026,1.7030006041060521,2.632998436858736,1.231178711250007,1.022392152493665,1.0102947167659617,1.0233692398407024,1.4372282577473716,1.0678895876456154,1.0752640209655842,1.0426683220691506,1.988908845030333,1.7475970597505825,1.0829864829807114,4.676295957472837,1.0259372886248421,1.369757033712962,1.0035387049341757,2.5986793214861894,1.0335818315871999,1.0824181781113402,1.0547682671001584,1.0728012599631775,1.1732211401223716,1.144980209075195,3.2558812542823383,3.0232745328370947,1.2186608539447192,1.3957227102195626,2.9877049794608688,1.3290213620547435,1.2278376930182409,1.0025152159493531,1.8937128826116019,1.0206653350102404,1.1070403156371158,1.173801008337045,1.0050044175011252,2.336594052685719,1.7155536677293197,1.350256076342962,1.6396490523757399,1.2380316102907372,1.3370967850175752,1.116441045044879,1.2110295729220388,1.6525896204812092,1.0341477363268514,1.0164602573570358,1.1943978036265626,1.0265524641281834,1.1076737843226738,1.0790004773715027,2.101738695557817,3.5867732176016545,4.076378553689256,1.1518115199309398,1.1621523044856308,1.0969871788624816,1.022644933161374,1.0216418810590109,1.1797018990344863,1.176780597390855,3.0120961085099047,1.157213201359353,1.1246058975090427,2.36501689043926,2.6455188273342523,1.49950645335083,1.1064337280442518,2.566922192528491,1.0293805595955259,1.0365353988253891,1.0017993809280172,2.4402185263139184,1.033001841920388,1.6932724359367906,1.0058794253689598,1.7986770419827294,1.3047089713549556,1.11233553882028,1.3032288329793014,1.0006745172528928,1.0824167784247916,1.2941338430543383,3.8242568859380826,1.1564344053649867,3.405981093889326,2.7596386969642572,1.1614367568575283,1.0755965574905224,1.4923623881870545,1.0020717995739596,1.0779574291735399,1.1109107539440006,1.7281049653908793,1.2915050308041423,1.0341716842946578,1.0520754086989563,1.1378243292675418,1.7392611135818432,1.2604977118163836,1.716850688982511,1.6250279428869672,3.303799311624593,1.4884722198817597,1.5040985908420024,4.914551572971268,1.188360627289239,1.0220330434423717,1.107833126902392,1.2797959107818717,1.3802473898823813,1.0005634741649232,1.688287700173005,1.1288019259021473,1.2590937242667657,1.0635168463958444,1.2885575804952902,1.252834029675185,1.3434606547802161,1.126448085475689,1.0079192886914659,1.2414095890137418,1.0053062426792418,1.1669924614061926,1.1158001078493152,1.0502519058159696,1.0458534487092013,1.1995800329401365,2.5307755487058277,1.1247877567909148,1.481749855943565,1.3550457882598608,2.33579164020464,1.0963411577096753,1.1802874537792265,3.3424609382827515,1.0266150518352983,1.68326255688505,2.8250917414595498,1.2965943402380966,4.784015925955925,1.1194805900863851,1.0006210967601186,2.3625292452882865,2.0258466447907364,2.253222618300734,1.6142105968507168,1.2818022920420893,1.088178385293792,1.9394602832694379,4.146051481997891,3.3517061492912976,1.5029982519748777,1.0182559134627114,1.5417590129702523,1.2459416758993795,1.280772136316215,1.743887747754808,1.0032654540978478,3.8648482615039943,2.204217540851478,2.1887155804287404,1.3898758364772459,1.3348277465066973,2.753879111080934,1.018490984551534,1.0644562909382618,1.3318144993900483,1.1152382243391992,1.0728596322906565,1.2308975174005143,1.068367015343564,1.1581701417494696,1.5115167633450528,1.3244221563340692,1.140148997956854,1.1961762652550127,1.4013391629218623,1.1892836991517504,1.0492989267999535,1.1248283976187459,1.1840014357094144,1.1206323674259075,1.017274568062601,1.9234437430375166,1.0344669529762036,1.0042703104451478,1.2781054929303262,1.562035387408731,1.5684440081379796,1.0775506801356183,1.083969563288952,1.1868057489411954,2.1125000398659863,1.0195739177012306,1.1563977951759272,1.2549424680116565,1.069739498477986,1.1508913415150637,1.5661956408743594,1.3338435806545417,2.018012522552909,1.0073649378586857,1.1261916681402984,1.583674365854099,2.9187308874042968,1.7147327114124908,2.1180911500185764,1.7155373077418834,1.4884757908272614,1.4017853464024554,3.020512607845218,1.1807420904541024,1.0044257678157187,1.1464331693056287,1.5421908927767978,1.0755664432009349,1.791778568997026,1.0605110216823832,1.2029491826105136,1.1559681819287397,1.1824207351553515,1.1041693741388172,1.1592618622716548,1.243757174845794,3.1749388654011304,1.468648997894795,1.000600935153444,1.3583979817526644,1.0008481431167964,1.0306771417703442,1.21171495147298,1.3524202699124683,3.076378487246266,1.0847716045616846,1.003764425954358,2.1011315771796073,1.2984030561889655,1.0261902378304577,1.961217738819162,1.0344352506456265,1.0526850816501385,1.0748898566280771,3.145502261025873,1.2998575474761056,1.0487768776480417,1.129166772196132,1.0205116369805027,1.122295232208918,1.007497013743872,1.1748786030487373,1.05925274354148,1.5204640090809762,1.937340559095127,1.1325710413699994,1.308893135641966,1.530598639214388,1.3528779371185657,1.1025838813387905,1.2641611250897857,1.1742075884362309,1.2343156809417313,1.9347791707876494,1.0134922640507873,1.2924072758227616,1.6037737705324049,1.2940627352775806,1.4268082156637227,1.920175417457606,1.00090544091353,1.4482431287733561,1.7029061920573438,1.9994587259520538,1.010244795181262,1.074737682637551,2.2775919497100663,1.77606040484034,1.0788202560638647,1.2861338499547963,1.0846307190688307,1.0111418089837072,1.3909705748290278,1.2662268116909452,1.1086980760231313,1.1507834382425017,1.2536569526189756,1.154080553573398,1.1594910761492023,1.1877915418346254,1.136166743491356,1.0160156419521478,2.5415227042746316,1.2228153643635236,3.5829735062435484,1.0868631526467953,1.2585166823380187,3.3161508173484737,1.4354824588263635,1.1841665563767336,2.057283579476866,1.1084919638522481,1.144883396961775,1.0564592760336584,1.0305722365825696,1.5090482585442648,1.0174421537656506,1.3431738071035606,1.1525590092363818,1.0137433893656747,1.2027939734219144,1.6931799804589864,1.353885072183117,1.1174898740441757,1.1982807120102952,1.7110014709875208,1.4715928597854933,1.000449231262713,1.3572701264953664,1.4680000751509343,1.4880994938149414,3.8454418036608464,1.2310756672833547,1.4678600569563778,1.5007278993025317,2.137077463530251,1.3833858519935658,1.0170121915465937,1.5699111926479459,1.0854148193057713,1.021740996632942,1.6685208622084577,2.3804741063660853,1.6792664581781493,2.037944983021982,1.7964916306369152,1.083281357516313,1.291904223208759,1.446174847079008,1.2044776837736717,1.1218048612691884,2.4713668527556782,1.7368252445916275,1.1821656926837785,1.0241300185800164,1.0023563774330067,1.7178161404298975,1.0090345500497497,1.1041682871371974,1.1476797344541954,1.591425837751851,3.3638361261027985,1.0192237305952934,1.6052257629899527,1.2447770707377035,1.1392113206701056,1.3929349887518365,1.0737232280590712,1.009581246493099,1.274274357204563,1.9492278285676863,1.0946485739651437,1.0019090185035626,2.808408361712971,1.2332403356232096,2.972444300713637,1.1230683943380158,1.0434494603981463,1.0864498686237356,1.0730682634895325,1.0916349484908725,1.058417455838018,1.1816395116449274,1.4058327994558948,2.142603310814851,1.016448477450291,1.0223087763651924,1.6559675638840978,1.001297130320313,2.449130359202365,2.2952231622442634,1.1166505664440818,1.0710249092829325,1.0945024971024824,1.0263293032630347,2.2592857054211724,1.0967846285601035,1.7374714064300245,1.3061851410784853,1.1711129790943007,1.0778187804654804,1.007291553279315,1.1316251323517044,3.1926327107702264,1.0341048031450066,4.400993140777139,1.4361846742808884,1.4660844119973784,1.0839229654542981,1.301652004584888,1.045359781398216,3.6620186347888404,1.3154936069694745,1.0068034515285313,1.122649591501682,1.0381348095643093,1.4453475258687676,2.325202946461478,2.1550758648998745,1.2830811859905846,1.9172457021701963,1.1357674660670243,2.220366918914703,2.0256375141461054,1.1408992952637167,1.0085259815237264,1.576462241389173,1.1090353899113803,1.2181074701322177,1.3080687540667046,1.6855279237571386,1.8392764896684213,2.2297093320772876,1.014980981589656,2.194487994906622,1.129194213110144,1.0939936150073133,2.890214703614239,1.3800294939972468,2.399101697984108,1.0991942971793434,1.0009014362557003,1.04425310266201,1.9663236790287135,1.029121013539682,1.0300460617195373,1.0739859558309583,2.092014314848487,2.2985011238472253,1.0035186090035444,1.7200000311809907,4.867512818968392,1.0010100341848909,1.0734860462094977,1.8453857799044797,1.44702673290025,1.0127631697377724,1.3590177526041638,2.3578355402519047],"x":[0.38311855030497366,0.5993215421108364,0.38416087911048447,0.23373177246466126,0.9305917747571792,0.41252561329595494,0.36519921961284596,0.7793674936215182,0.9443540268105746,0.09437029456259238,0.6573147599889659,0.185344338473302,0.8939871516150566,0.751508201984701,0.4330321569139275,0.4507736376142948,0.1680199212029041,0.317435115978985,0.5310808538983218,0.4149838418787437,0.8786570320330129,0.14286658839329358,0.1133267060901113,0.21535993048710922,0.6407225989930938,0.7191488993436483,0.3821059873844195,0.4531803496439164,0.20104618545398267,0.2175233446485536,0.12256247186043523,0.8660593349182932,0.9107442622487074,0.3101648831478625,0.7322580220327106,0.6442948786954801,0.09357455123593805,0.5018206540783388,0.8040210592511638,0.15059888230255902,0.20659688768317386,0.8604324533659256,0.4547824699712444,0.32428329071943685,0.2819642731703744,0.4519251246018594,0.12145808780392753,0.6611519308173146,0.25782682952235136,0.7361258518209617,0.6274983843597259,0.04465306611086595,0.5286082588931904,0.11134724499063697,0.8766166251918164,0.2072303339922028,0.2030391772649056,0.7219191010773061,0.7421134753510248,0.10414039120971541,0.2933285290562213,0.1962179905107042,0.9572523435695255,0.248051977924443,0.8729329350649897,0.9176651408219061,0.9787165938078697,0.23993904099161822,0.3695914971099046,0.7856999377368186,0.8641092113766622,0.6638206384137055,0.5101935130545745,0.39409368226146757,0.14045130758654034,0.26393196093811033,0.6402764472291216,0.6888071171537993,0.5061613151681825,0.2360225474332316,0.4906793650844681,0.696976070425068,0.6825443574716821,0.44008662396181797,0.3099902985766354,0.9653044394324932,0.6546934693678998,0.26409120499481964,0.2021667728652139,0.06952614433902649,0.42458867981950865,0.9292149741007785,0.5605326876293653,0.9982652212220993,0.1378125853195693,0.9330689322885406,0.2438308968357259,0.14640741898378162,0.4000850357180734,0.48903335535595827,0.678962139121777,0.26232414466870657,0.6584757061697855,0.7334972979319512,0.6503714892827275,0.44188178791372756,0.3935521580122274,0.07192534964714903,0.23517736065613715,0.7462666914169551,0.9739089649522912,0.6343039753010338,0.7652794696606251,0.06935176529482545,0.10019579797327993,0.8943964916397256,0.2527058804356135,0.3971654589686602,0.6043147501565809,0.2447870663117735,0.9345332294677717,0.4900167888271654,0.5017221168934554,0.4386832194955932,0.5312292498386604,0.22124657077953258,0.9030179072594864,0.07636642174751462,0.27180570394509607,0.46249764032271723,0.4695241649908737,0.3685321781547366,0.577846017362619,0.7574075712834862,0.6916628059774474,0.7256614967514365,0.7241256588873577,0.1552919032948088,0.2711158386846704,0.5734129796645666,0.8055533415216858,0.3587809972056095,0.355165971106447,0.8755843900841902,0.6631273484933227,0.1885939829172849,0.3031849374433948,0.7115066689385847,0.5519772370498397,0.5638184152103873,0.08878273351368349,0.3489624892335801,0.20587540661339454,0.5578866629898196,0.9196091711520742,0.38022444099682895,0.6325215824524852,0.01821715372538657,0.11361166591947724,0.4531344489278799,0.8489084804458695,0.817749791771728,0.7671340554360844,0.33411296135750734,0.04479812843625175,0.5515435584655934,0.068660039774747,0.3732534747571177,0.4941356959155272,0.920701758757146,0.7983581088197389,0.04015348699270649,0.0923395864969565,0.8563189130379216,0.4959843119223679,0.830842550215795,0.07054205278781911,0.6602941166711624,0.8196099519988185,0.9606482225514406,0.4640177577285376,0.6051804235124969,0.10466661264739541,0.4535491696798959,0.6262897231574993,0.36234684576574683,0.9834314779912849,0.5361034848134525,0.01640309456701594,0.14100214750376594,0.8056478384918759,0.5511599484896161,0.1155643221148639,0.03656042004198112,0.30035382933871935,0.22133056211682933,0.9072506203883135,0.08731668196421372,0.1122038080724117,0.9138203692426816,0.626978132528992,0.013001325470942016,0.935112504802061,0.8799963415600727,0.6889730429191803,0.5084689681558625,0.898877503278902,0.5858416080606659,0.24210737977736363,0.8892606983732048,0.3021283192752706,0.9657454320994037,0.6492016245677834,0.3139705718469554,0.29629483652472466,0.8440729100944488,0.5436183315976424,0.7130257760962471,0.9309519632142575,0.03618378236572917,0.6430021657757279,0.7449647667091153,0.7850283762455927,0.9794863541618044,0.9349176025589032,0.7346407821553689,0.7427491638061314,0.8521797039650802,0.210161624265659,0.3363923286412249,0.7071273282132018,0.45785914664823557,0.749297359673226,0.22726122052632336,0.1372665432528304,0.35148923091411066,0.3573452315825556,0.20454458232690143,0.5737151566623524,0.9128220413592145,0.5218035937077041,0.9882843885270245,0.5053798607493856,0.14065295866690408,0.5321851485668059,0.11092647337755812,0.9116060427636048,0.46792095384056354,0.23183864748954974,0.9250198677716235,0.035945463717678816,0.21015591468201178,0.09737016041510449,0.5019601720741735,0.3184229845540143,0.871075178089818,0.3826104505383847,0.3029588578225666,0.23412250204354113,0.0873893585773784,0.8057333383100429,0.33658896065462995,0.5093832780526357,0.805596220517312,0.6054619020136423,0.3869674329378425,0.7968665505093364,0.17528326591843157,0.05754087149198517,0.6648794595335996,0.512717998065777,0.014118572483330594,0.8320289893727306,0.8736924306755265,0.25317204570107776,0.8480031066648877,0.2036314622056159,0.01795374212567924,0.9070097549396003,0.5819775338155921,0.7477322073171828,0.1694521587815523,0.974912008603849,0.033554320043400754,0.13034384366408003,0.0266837492152463,0.713057402344244,0.02451972053103524,0.21515114065499996,0.18444341183247026,0.005360681583618909,0.8321765434687238,0.39547575167965165,0.19466193693441736,0.933498835549732,0.9624394466083066,0.38357219261694153,0.8336579515194671,0.33628208208273414,0.36246827712085783,0.9911473867304277,0.7915681346534622,0.7018875188830447,0.42202160437617087,0.6727571111228821,0.9179557367290663,0.1845469439964864,0.7012278694693601,0.38304903129200385,0.4354643721265985,0.16977346772107005,0.6694796474360056,0.023536829192337683,0.650464881649361,0.9327552497915517,0.728915371100683,0.7168737184448006,0.20508277106881567,0.14041577518692705,0.26682849171479783,0.614192693439755,0.14725322693896215,0.9918636621607522,0.49960312113182526,0.9061178413851512,0.5981744748371884,0.69270743039678,0.10534848727752455,0.8173176712271457,0.011740746839280058,0.7159509020910251,0.7385160559537098,0.30587143309007603,0.7500368349669106,0.3131231568137858,0.1868972280319543,0.17499891337492612,0.8683398831693938,0.7130660011486607,0.24063108388325416,0.574387613906401,0.6529582027422001,0.8980087410801949,0.3666025903089376,0.663602322023523,0.8601071608884294,0.9857703311040504,0.539935167485305,0.273463221709058,0.4009905589202243,0.1432198851282993,0.43223859482216387,0.3250835709511899,0.3107223360707343,0.47611415841209004,0.7285886100710846,0.4455647951734716,0.8183076815590655,0.8410443590914778,0.11529527699382291,0.9999325525771523,0.10866040927952603,0.6113053945356841,0.08945834193835234,0.9685769712986845,0.8881394461071042,0.48807619975337935,0.06310741412739906,0.7614059555834125,0.6498374192763723,0.33742709393469195,0.41340528323222947,0.8660156625860351,0.8378074651870324,0.5443115513526833,0.902513355226022,0.91284185399366,0.07005114613082397,0.49488051555292456,0.2545249733675681,0.8436438384891367,0.21707632148384626,0.889862485176161,0.9642309757920267,0.04777117369345363,0.8134641453489344,0.1752147446545418,0.8222562531795594,0.4393577783306084,0.32098147017205125,0.7403670983714921,0.8064075383780116,0.4080548190460651,0.06618079716409686,0.9880297813205225,0.5688581269616158,0.22611341046427635,0.13288260208146174,0.6807817075594544,0.7222323502289096,0.5965676412003273,0.8016145722535581,0.3142257326129716,0.4712048959780879,0.7532722373562872,0.6732284213070401,0.46579818828371233,0.7270889475525331,0.6027854096362404,0.33497417562441734,0.8509962811941842,0.4995478664406452,0.1450994155887002,0.8887817928302904,0.20909490589743207,0.5705614590695609,0.546164908064328,0.6795552175628026,0.7918123008303044,0.5516238188252585,0.24490098304743246,0.27678955509758385,0.09342286834529157,0.271951559484793,0.1830075677269254,0.04909424067946411,0.9387654413283615,0.9670622131391107,0.21219824126631215,0.9284017809403633,0.8926174588435367,0.2003519420203257,0.7103631541100157,0.8212907845474862,0.4340504243566641,0.3210865480297782,0.35450270715541277,0.9752949976473742,0.07979275776553418,0.4656811254985176,0.9658329746836178,0.9104467669006151,0.7161176308515453,0.48992663382014356,0.8376652859756688,0.4013741510883908,0.7464603012650965,0.7888362435873464,0.6660177559880416,0.31254256483286214,0.9691110780383543,0.9560476339139812,0.41566648178806087,0.12475551083094194,0.3608938546994642,0.3359344245561342,0.770923433826356,0.9615908522170027,0.9342803853179749,0.5101581212596027,0.2190805813208767,0.34854174793467796,0.7980146926022675,0.886580107327972,0.1706583197798126,0.6466145808401815,0.808107070184475,0.861654737654733,0.2038930346147403,0.1277220484694721,0.7786189417712672,0.33193822093579306,0.19818791744310538,0.773734837549209,0.16527745692199658,0.5897304358597972,0.1614493557061052,0.9354188115849043,0.9774033530159316,0.9013697621401286,0.09953906254227074,0.8363544681650623,0.62510378033322,0.9149422594319643,0.8546944368086362,0.5582358463867543,0.03924753879950882,0.6959435567762675,0.832106424884943,0.03512247877386421,0.17085692223354587,0.6950830791406468,0.4901522726791141,0.03753256611146916,0.6123154302348677,0.9973024253559755,0.23176705836567923,0.31603139575796013,0.061946531590673315,0.4464813610042093,0.13544451300140836,0.25921087452788383,0.9948772120825664,0.02624566585952315,0.6283678986514143,0.10034379693565176,0.2754750434192035,0.5461032965283183,0.471646225766275,0.9213252715177502,0.10333245370545652,0.03597414731397852,0.58343736419209,0.3508056216874422,0.975847769191444,0.5260130932698417,0.9276438375897988,0.37596491857169445,0.760972356716425,0.4990764214161745,0.12794968295632114,0.7887232226426306,0.12318219682341636,0.7391050212811998,0.6952924330876618,0.4536267423239466,0.4226441681244386,0.1709785516333988,0.8012971657578483,0.906751537850599,0.17286053773116916,0.9521569576948479,0.8888573683826602,0.8318448232034632,0.39233384696546336,0.643859949399249,0.16072056247813715,0.10582592937834545,0.8558487971554118,0.22284060853265664,0.24957511624700168,0.06548018172617653,0.181146509760705,0.031855010696896224,0.9335428221761377,0.11714843877424275,0.30240216585472646,0.18068097003768524,0.758868985636953,0.12986190838725165,0.5147823998217078,0.5418495421699043,0.6997007971156552,0.2025981517490938,0.05112096989259607,0.030782492226653302,0.619181936823693,0.8349505510156798,0.2148946528295712,0.758823908729028,0.6567526071236671,0.7524804054649701,0.6357656997804375,0.9521164517973033,0.9380576607754916,0.766801913009604,0.5838997676317221,0.07756696212612946,0.885230520404749,0.14899192742460254,0.2691708323907196,0.6983960515777976,0.691964626734614,0.1809172401640573,0.42651515323975153,0.8978002546727402,0.9855292082849272,0.2011854286490189,0.8136763429578955,0.7950179587101469,0.3007196211745047,0.6800982373285374,0.03366017621172124,0.6606300858782495,0.07160581363822582,0.5175615031950254,0.16536264585316363,0.006503459461742134,0.8150015424276977,0.7683120512559161,0.2649102533500085,0.6228877807587048,0.2739381626533841,0.3071762865406793,0.11141538316940669,0.3352577456893808,0.6713263536958698,0.05275002026715003,0.0398281160228513,0.17169104951352532,0.40320323208374154,0.25764449343521156,0.4971225995430808,0.8123888900185732,0.936324563639525,0.9909692014662035,0.26538735146005754,0.4872133111927852,0.27914931960509937,0.023248552406956113,0.2323025491925328,0.2256734802671383,0.5502676323283229,0.9271313579293847,0.29410401967505084,0.7118485534650487,0.7638524107757869,0.781913309900601,0.8414940741874366,0.43479981225356856,0.6757072174106808,0.05417414459635417,0.08959315478383023,0.09202552019009924,0.6746183060296012,0.0379364503356483,0.7552694016728849,0.7941562588068278,0.4858200357719369,0.4604019306318483,0.7470985551683509,0.43687718841081336,0.49521908514889934,0.902352698629592,0.6505513078850422,0.9623295743314326,0.1616636532985034,0.9976617371422343,0.8836100819725214,0.6223197501220208,0.23808671835663753,0.41245853144929967,0.004633715389154469,0.4491323353636081,0.11471326698452677,0.5391289054191712,0.2501645538956956,0.5275112063581837,0.16351179410289984,0.3200473414494318,0.7897811624191906,0.26532044375416874,0.8776786332970408,0.4466339007432034,0.9283727160715536,0.37565503793648736,0.7534780055852954,0.9553695000199653,0.622173656146533,0.13589127968735037,0.22841886454843086,0.32789030175822154,0.5551845895213747,0.004306959914169184,0.4591025909589934,0.5917141683429814,0.37731221669333004,0.09139724515497827,0.3472072424050927,0.4044634648791603,0.28390282758955454,0.4245426933233858,0.025136252422198968,0.26866168899276044,0.015189758654920782,0.16007247225077315,0.1641044287272826,0.09519927217668989,0.12188730430679962,0.4729046412002782,0.7474730433173922,0.17274576974389233,0.5208119355463825,0.8481634390171437,0.8736508066029356,0.6123275905307921,0.29069222248710336,0.843614377935276,0.2814235860023728,0.6337309138335665,0.9911086624772163,0.39664377376671167,0.9615272183949823,0.1690466428479651,0.003451293664284316,0.705334421189393,0.580382677709393,0.7156269050235273,0.4836752154253243,0.27206000452785717,0.13238736923138794,0.6279362460030773,0.9760798892869127,0.8471275635139517,0.7698268463843103,0.5545041817957692,0.9466332755660096,0.5978294883135138,0.2628355185452482,0.6472804925735753,0.009131552937117426,0.9011604416380872,0.5923078509394422,0.7402290839388677,0.4305599460419012,0.33492082600630146,0.967451584894292,0.9512999930172772,0.15829588551202756,0.9357765223346228,0.3893917444847159,0.5305006028689649,0.5222625725200662,0.9730833157641603,0.1885871485982611,0.9737918975934783,0.9148085038092058,0.22500081316554454,0.25168545428227507,0.8234421708288602,0.22490088092186844,0.3548713831196484,0.7644178903980294,0.5171811961762256,0.9789900597211585,0.21176455923229254,0.6350460104650313,0.4350674951200064,0.0998757873203533,0.7795311483017797,0.6609741652232768,0.9516251789806858,0.14738979767290283,0.16696434426475926,0.29918821188300115,0.9770227188542977,0.27858462894508107,0.5312490805296488,0.39453186969068965,0.08611350256215156,0.15172474660920732,0.9004094121466244,0.7634420952854817,0.7176668033114812,0.292119848490318,0.3196886269156842,0.5588600985459302,0.8230304210673429,0.6723350226749085,0.7154729289033577,0.5706290829802037,0.4321117043740823,0.595959093680261,0.7672959503232937,0.6248347082464272,0.016846702010081094,0.6853150161697066,0.4540128809703603,0.10423989422768543,0.5845438649534402,0.11065377348122252,0.37683526007351986,0.4493248730680752,0.3762634833984666,0.34306351339415486,0.7570548842118996,0.33699815459008353,0.794121782261572,0.5775439687929562,0.2843791043549089,0.9137655524282746,0.021027478422826373,0.06620016459009204,0.2020943656541896,0.2908820413433866,0.8255557410168755,0.31098557901015167,0.029519138164030734,0.8463167137473766,0.9441851134672183,0.03106594738945878,0.642802056645571,0.3241400398169272,0.13529595900744473,0.09408293523694278,0.8171845767982673,0.35722995700374227,0.10077441546264954,0.2028003932613618,0.3840126421671122,0.7742356696941051,0.07551525140392812,0.547208304172736,0.11138873663586102,0.4144050211833221,0.773678675281845,0.4960683755091082,0.6495506243606444,0.383797568587968,0.3927773878408787,0.7528106148572491,0.6842040149427184,0.279730070181214,0.27170756723593303,0.6529256381413986,0.5511142214323401,0.25598522687260394,0.4056465984116753,0.9939658468520918,0.7907868567585241,0.510002282597025,0.5658659298587418,0.5023891057274465,0.5436628446153942,0.6878068523589524,0.08560078531482396,0.40594070142545724,0.6522211282286301,0.7995837731531059,0.738215454271598,0.29229142273774333,0.31245893549236103,0.08004700687084054,0.29730269430809564,0.9273670254285786,0.17174619408613956,0.1527397573782372,0.6131309654553001,0.4649477432511142,0.8031228669769594,0.23604578500212647,0.5028522713631765,0.0476856849727878,0.7643646333018985,0.18448243825616362,0.8551916892447906,0.8894998342326934,0.8244306445376581,0.848746663530374,0.8485751732163831,0.1965533900138945,0.8345515452694896,0.1282387358765682,0.16297255999175975,0.2016601583723685,0.8324270680362209,0.9544754267456137,0.1063606955612606,0.32022822945842355,0.8660397058008475,0.6933233250406168,0.17816513660766908,0.6763927786303872,0.513272343475417,0.2224756926139828,0.22425778334248814,0.48134041825632323,0.7409423180198749,0.010793054655848566,0.28256039957753654,0.40390776278368423,0.6618205820962317,0.9273198726218197,0.33311646299546105,0.48390264642713277,0.5118586504488822,0.8869544111935788,0.9138767103754848,0.8588861657501448,0.6196245655181583,0.4542549291666642,0.14343267811445637,0.9207828299135346,0.8503920984094402,0.7325205233651526,0.6958512676633679,0.9953161207896539,0.8569852205985442,0.880287216246078,0.6867355024323389,0.34996905029598024,0.37250639424960075,0.6568683663852166,0.8379639455645538,0.17520671464033533,0.040036573975404055,0.08316233307809373,0.6969072203735178,0.01646342766059039,0.10468346202382928,0.19995738996073809,0.46921505440816635,0.8449126752289953,0.45938827784172065,0.49888193045177043,0.9345227841722934,0.5737455179538604,0.9653488275609503,0.24789975229399763,0.04148906863448443,0.3114603542039647,0.7894581138626746,0.906917458991717,0.3717136977948752,0.9444609964640374,0.4921597713983352,0.8533916149515097,0.27011229916072677,0.18549501845489402,0.7418876659642517,0.16586554955375354,0.24279190820501428,0.06084012994872845,0.1937027155432831,0.8892935582061035,0.6064651600001572,0.020811854000786,0.17380202705956638,0.49432827545852187,0.051584686067008834,0.6692467050935083,0.7224778997053587,0.10803869148141443,0.11008689285861073,0.20612061374036306,0.45724762975735356,0.9078881732131647,0.3049849574301675,0.7151036616214386,0.6582534436115373,0.509356636234805,0.7406168087729075,0.1069246259130252,0.3174539991340981,0.9244706884634866,0.4682110741032952,0.954964148175093,0.7644427450574356,0.4089299169641656,0.21629163579479838,0.5178047569465996,0.07798097978983409,0.9257092140938481,0.7754800297195661,0.016122914520714238,0.15398605662013742,0.05824835847985299,0.9633320226505582,0.8284704289605194,0.6507863208113498,0.6081455937179396,0.8211036812093657,0.15000819167775026,0.9690713339766424,0.7780225226733315,0.2712164794710159,0.2780790324987499,0.40863001185439196,0.23105552761896164,0.3542574458649803,0.8175225131545341,0.642322652334236,0.7103421288309615,0.8027761548071997,0.046344394800272415,0.6202781312624421,0.29776686269460595,0.11890272224228182,0.8814134581713078,0.4308480480706627,0.644183057267119,0.15459470882383775,0.004775261579305079,0.1077565570293364,0.614798386485067,0.05988929237173979,0.2210459428423397,0.12843200041214198,0.7932335094297955,0.6541520229148838,0.04307922408648435,0.7006200605394226,0.9518380158160482,0.16738137653187057,0.07566757358428422,0.992661753885792,0.8415051885112848,0.9015517158725594,0.3819206745601238,0.9570540239871628],"lambda":[0.9369321324691442,0.2714290720393091,0.4113036920544044,0.197373558166831,0.4971908904019202,0.26384722681584205,0.17336025011855738,0.0059304068765506646,0.8556777017949688,0.9144103910821402,0.2598443934438148,0.1850187677706545,0.09118648769542936,0.6498316324000748,0.7603019701582916,0.38831581059389086,0.5290710956345543,0.9991374932003312,0.7523332626758119,0.15643474892039633,0.11403436510905984,0.3751055842728339,0.2955402260921409,0.3604598924007989,0.4279327199210321,0.580633129226948,0.9569957938769473,0.5048222924588877,0.8590976698504493,0.7455327412354014,0.638094666352029,0.47664465895872454,0.7890071750835104,0.12219588307505025,0.6928442671626791,0.28353660498428224,0.5310546681717676,0.9475083021240642,0.7591855041453142,0.04063175184068202,0.9117168977348531,0.7792749615245302,0.9668731180879002,0.8275659635703609,0.7436562860090528,0.6966303512806504,0.9880431815202197,0.9709913086211746,0.8918638018974372,0.32279387696085027,0.7779489982334475,0.6582155418257003,0.7276521693372977,0.22680536380214122,0.25088795587209156,0.25441484019623073,0.8984275847671266,0.753125507785309,0.4875609005015411,0.5216673139998831,0.8408750555160365,0.18531498193960805,0.3748475490126866,0.6344646130795701,0.04752749055765926,0.7900098744103707,0.5034538856685742,0.37071839036548027,0.5662878431311091,0.8146556168316297,0.7337183764530446,0.7389736112059813,0.8284077439189825,0.01961493903440026,0.5764237368195246,0.5804539907723076,0.3183125335627741,0.915751873150273,0.2239760889191691,0.494306703412029,0.774016941369835,0.04440689689199728,0.42661167807643485,0.6738381943761707,0.09698464281465591,0.8925893700534473,0.29197380472809176,0.464823188480576,0.9545773761315615,0.3952158346172905,0.9804163903464955,0.3427680197652736,0.2851703347665666,0.8428905646213467,0.1561064690707692,0.5997635794362526,0.21311104295954886,0.6449315373787925,0.8935863839399365,0.5957474881537972,0.7938867613967691,0.7760681705387624,0.7540193711997023,0.7700887979291897,0.7284984506609105,0.8635867230557461,0.053390634934257664,0.037259262770354296,0.10866567965671359,0.6246522825054419,0.658329279717625,0.07415012162530954,0.7348459086469838,0.539900758555804,0.40853582175391057,0.6596823901475573,0.44200290393025576,0.2164009634595312,0.7330205085077943,0.9489390542083496,0.5234778318239726,0.6405356208906339,0.24810534584384514,0.33093827069467774,0.6471116716345515,0.5167752662576897,0.8519670847555123,0.9805472261394019,0.220868130069094,0.8958477989175162,0.7935274019678278,0.3594046728380924,0.4013245677462478,0.7057790700044266,0.7541807431400875,0.5373028956144246,0.38354950300642465,0.5863104708684042,0.5981536958553961,0.3053162600098758,0.10315249385270064,0.751332235258352,0.43263528010701524,0.9519588984096838,0.32982403702178775,0.8602630778969764,0.07610940494857976,0.3823482403313456,0.6138447019271107,0.06516802036280223,0.6106740616418587,0.4011275702685524,0.3251527723104002,0.9514110473232451,0.8360273169556245,0.4160316788466196,0.9599974714638033,0.5850741985473435,0.4178728160552079,0.7317492373689725,0.6406768603787589,0.17733813809115961,0.2686717871336721,0.23464326517560363,0.9584245133269225,0.33720128618157763,0.8181626276211105,0.394914355891107,0.6615359525158071,0.13114309657581824,0.20251698774251747,0.7476256174699725,0.4978448559271622,0.4732565460571403,0.6992113231806634,0.2677235988073914,0.9533091241705813,0.10058525514849426,0.5026201424213508,0.06786086970457061,0.9959511550044369,0.28280521882705933,0.8943375658121397,0.7844475029594347,0.5824925212572976,0.5252820720292259,0.911339312212619,0.31961426230420176,0.9228253061475364,0.7673181345886326,0.40379890973378263,0.6239951057689275,0.3049819787037993,0.05359824324593343,0.4742189692341554,0.6593962588237794,0.014512730223864345,0.8289409473164644,0.44475492678326844,0.9068818695175158,0.8517317123758152,0.44562114651262164,0.13132293521081806,0.7841946131173889,0.445965300182281,0.9478892080692658,0.4680727312336188,0.972997043662595,0.4954998291179029,0.037202762742529316,0.1301028775583426,0.07930943874422369,0.9072289430898637,0.049690622208107715,0.540615780008646,0.8331498491723026,0.9801073217870009,0.12767449173694723,0.9139141150879488,0.8898324069516435,0.02417607392409815,0.8455291574894226,0.5177971543944209,0.5592937572629157,0.4447271415340248,0.7114929428942232,0.9122626869479642,0.997129880078405,0.34632970306750455,0.34094760193033635,0.1982838704625991,0.6761657474710157,0.9262290787626739,0.07548845583399899,0.5138755456847972,0.5799230706401293,0.32369441984476244,0.3888007172015282,0.5846288472908416,0.34220395543581206,0.0884099647003953,0.8349726616618001,0.8162006822574575,0.4731340515479261,0.946449041646583,0.2042826062284222,0.9714910858603751,0.22962842705448638,0.1248453813812962,0.07729391886094628,0.6184772890038459,0.920390159740841,0.9652914063412443,0.28046851727040045,0.21571394068285032,0.47706431361401735,0.5138478699007061,0.7315110109438852,0.5509983677857866,0.3109617273875056,0.06259389423502149,0.2426848051116859,0.5908380653410603,0.06519883793877712,0.8666595052834856,0.6670203831060728,0.340595820181661,0.4344535490673065,0.6377427474488753,0.4319832461472124,0.5231822577854999,0.13471378913112164,0.8428452396855399,0.9532380596909731,0.7141721722878305,0.9166852639945258,0.21350785623529656,0.8675153764050341,0.865180377035629,0.4487999793307038,0.3909152976956072,0.8071452427135983,0.46917912542125606,0.2581462560342309,0.3936387404416106,0.8537747915385272,0.26430625379845973,0.5532159453201655,0.9724045409632933,0.14737014231456103,0.12448986296339704,0.5077934118531082,0.7723931648523947,0.0329563178434682,0.01372386799288039,0.09690650040926196,0.8678573172529593,0.9129155085108966,0.5225109232313216,0.596164970942267,0.006226701092691744,0.5679154001199389,0.9483558343142808,0.12525563459269895,0.03159038740969944,0.8178375729003984,0.3273128527037745,0.27435731750401593,0.10619305751993369,0.9171158387933807,0.9608542239780107,0.5776672627748485,0.30494085282358774,0.995048484069992,0.6460179901691028,0.9419456781813107,0.9596811808466361,0.18822700989675134,0.9777807300861616,0.5000648049504395,0.7220083482795798,0.8812862219013315,0.9430441480073337,0.8640330263040088,0.06491354235076274,0.19343721421708815,0.5360036046215981,0.10417032567913287,0.7991357181506245,0.3008256948301382,0.8332106610075345,0.7794022465446346,0.8066948026079297,0.4242992978138833,0.6567694301487768,0.45704161915705255,0.015245591325355967,0.959178469017063,0.8021958424262414,0.7191313770371948,0.38738573717987856,0.19071996332906238,0.4933867250710058,0.9220723994340361,0.8284302663807905,0.29753594407961104,0.8060699424227307,0.274746834372112,0.097763373131325,0.03090414647163131,0.2770353382593953,0.4986894976219338,0.7330685396298253,0.7591279091074123,0.12955858638626894,0.12409377950227829,0.2840149447106577,0.8458091872627302,0.3742006602886834,0.13242973073486897,0.4234708660016484,0.3564451350566402,0.32750791406506696,0.6917548124369433,0.7831210080269628,0.04407482897142012,0.8061298127143122,0.6411932909731242,0.24780471716469488,0.4047940623358073,0.48528627145343073,0.7373530813819127,0.4150827285598362,0.38628448769580936,0.2266884413550505,0.43051987358112265,0.037088361776522305,0.7665445251380512,0.7289295496613473,0.39796873452104675,0.43688087276525356,0.7034492772259868,0.17208716767873344,0.5951492522288642,0.9941753532808528,0.0037310796481662134,0.9214449961751274,0.7995727866016515,0.3691714445519949,0.5774538361360939,0.6202423287610124,0.6052967798226188,0.9606698001886247,0.16922517333357856,0.721512697858272,0.564477933941266,0.7807158092195072,0.14317444248292643,0.6770394819500059,0.9968485476469402,0.4880173272758257,0.6087646548596948,0.8252934417061164,0.09647067399484688,0.7858517845146187,0.2847595286866045,0.1681718454859018,0.01630420906065977,0.3736660397606786,0.8183041005229306,0.5867891976183994,0.35704410953161014,0.3850960665180936,0.5298901647139842,0.93808183329457,0.026935955798519373,0.9500873473311733,0.21264924293226795,0.10521844082652643,0.11469687010826934,0.756969578253393,0.16139081202692585,0.5450335972844862,0.38763977314928244,0.05127275192047298,0.302699254564359,0.6100938154775177,0.023976077853190336,0.6369655597379476,0.49873673918734385,0.32801740550031133,0.8767333725863287,0.5954264413467549,0.03608697518406867,0.5589338309207335,0.27896418796163625,0.7963068839753664,0.16412740811452808,0.4341049352813249,0.6129965468177991,0.08965499658759368,0.9097930149396056,0.34156772505846544,0.9125531809723169,0.7178642853877606,0.3935152365729253,0.872731026309576,0.5409208278466493,0.5187377832672895,0.0961493701361702,0.10567631608122108,0.03341453393054161,0.8167099488631524,0.886758881517844,0.11858789296401118,0.9006957694787114,0.2773858325835439,0.10881208279404331,0.8970284855658872,0.813880832759968,0.9370679405534108,0.44908899197679286,0.33115037064533714,0.35436553323732567,0.8337677118282991,0.8956251477583084,0.2268362035828666,0.3256052095083648,0.6392762776299536,0.10224606251768598,0.5353556714860683,0.8954156890532003,0.8206571094161892,0.5656126008838716,0.2972460196927471,0.3351170027766275,0.835176591291884,0.09472456119132455,0.7796651045398384,0.6730540402615293,0.01867875113925188,0.9414695696890623,0.1045370778842265,0.5358071169123138,0.6424038617838754,0.6079347473791004,0.24332399756440948,0.010301633750401828,0.5641441360494608,0.30824608852880075,0.8357706765568287,0.43068791684410157,0.5939225106003352,0.5574470506855962,0.8314099329836036,0.5848234433331321,0.8789021844278073,0.906968314128703,0.7064116922897425,0.5184526046629458,0.10582496268525654,0.8486743536490422,0.26597379781701824,0.8700304157267031,0.16037146785302148,0.9522371696143692,0.016323896474235378,0.32395166105709605,0.023581545037989926,0.24400660267898644,0.8873261246593644,0.44355835861805937,0.5019656643484349,0.79211445568239,0.2207775061565842,0.9963775941458104,0.8005949368146665,0.30323417796775676,0.42369811300096494,0.41908817121171715,0.8227106398693169,0.8484654987733196,0.49758787373226077,0.13642580244952884,0.1885003964880969,0.4694839246774116,0.23825873007953402,0.0795654514032309,0.9865904543330171,0.3690231182437216,0.55837247093226,0.8912866717811403,0.7484466813580446,0.3872666201682029,0.6107937515586532,0.8656468235788919,0.3320134817346323,0.13120172127626595,0.7585000459253206,0.6889078509455029,0.7092827257577825,0.20147546217714063,0.2590833675417197,0.09290059030606579,0.2504874558701651,0.6721671214441931,0.4750466643501394,0.20564633814804334,0.8761397338852568,0.5617102447479874,0.8317275700643187,0.740272354763668,0.9555574418098358,0.9260475495293492,0.42221247739227574,0.32762965543779465,0.026942087827601657,0.278007523094429,0.27399157370685634,0.06389206137516967,0.04499972475997893,0.6126812580557384,0.6283197537829401,0.0501024942571473,0.9919566265841067,0.02221119379073988,0.3967548125656517,0.04379736255536448,0.6708637256103345,0.20558653022815876,0.25640352234264263,0.052765713636765854,0.07043972651659858,0.8055480896049121,0.25453068816708346,0.8117618957948232,0.6588382383904472,0.8873738473908095,0.265416119968084,0.9012127307560005,0.8107699233181196,0.2107182250213877,0.07338099154619049,0.6821916000412132,0.2755517214173915,0.15000061623452976,0.8911489693140453,0.7650885222854271,0.6740060231428893,0.466849560813263,0.9900441727148543,0.5721161068789173,0.6775627598607594,0.8078874857054348,0.9345560973031928,0.4807193735805939,0.5250075490479091,0.6199015488541937,0.40180891015075826,0.9483808737555202,0.05276980338513382,0.34797386657656015,0.11806989279404356,0.5926547445771801,0.8237208224211756,0.8295975982544532,0.4650188084518565,0.23937558733898112,0.28747246559962103,0.9520186985601449,0.08187728854954934,0.6527792349041894,0.22185994418189114,0.7219754084525423,0.4270391166341114,0.11316032921007357,0.7507744622855153,0.8205348318641326,0.30696067213658296,0.1856995839459772,0.9764715701086706,0.5201732009794482,0.38284546288355537,0.018650396570441874,0.9260904321388723,0.83974615671968,0.466823358490853,0.004834519001180704,0.9385202853846168,0.4548915550635759,0.09583679775782428,0.4834118517252848,0.0010521678709787263,0.05404427534681289,0.2813030979415079,0.8291348516509296,0.8283226814995497,0.7158766674121402,0.71505085359664,0.17336650765276973,0.27109462414654795,0.7842101141429461,0.44561756332423874,0.13240623591573186,0.8653115228317609,0.7655922780365445,0.8999830280660495,0.048366708967960914,0.2857746508561554,0.3423127394946337,0.46009959218249774,0.7619141956276001,0.3846067884098987,0.8623247298670742,0.780895422297206,0.8723648935271147,0.3630403512896325,0.9953548935325884,0.19997695388045056,0.14972672057511782,0.39906996940885797,0.6357662079658091,0.43416274664606735,0.13051044504103104,0.8988450516810793,0.15011686107410793,0.5026451165458548,0.643453554192138,0.6107380188846729,0.45217448984426345,0.8993158716765808,0.2251302731449334,0.30988598904679554,0.7016182371124635,0.3457673241431243,0.8895940212493185,0.6144070569901756,0.49089931301570155,0.34586407058429613,0.3009542992712675,0.8352627001789334,0.6236313452382336,0.5753983509833034,0.2275316287670437,0.6078575426184007,0.10888625589932555,0.4913489912213005,0.9108913986341105,0.08081797349421005,0.588646751095663,0.6129906169245873,0.5335396788970368,0.9688010301195165,0.6128116821778538,0.17959442893502153,0.8391536772896773,0.8973788386502886,0.7770309603031156,0.769818309514207,0.7940336172038649,0.5969963425333631,0.7581317053786063,0.8598120641712079,0.9073725275718698,0.35144440974480684,0.02441212247468494,0.2745204726874415,0.2687608992293382,0.8231956470388841,0.610890246482336,0.3553909957873924,0.9244173186507385,0.9779943994053168,0.714432371176956,0.6117879032670008,0.7259444131529742,0.6210100537686343,0.011530056878899408,0.36419527990187417,0.1849623944652281,0.2290947341009446,0.10049920603592621,0.3029049029790407,0.04017478001260821,0.7075246139341713,0.2506808755018781,0.18778105087218666,0.5198042668012588,0.6259098591217653,0.2639605216966783,0.6873598704693664,0.11296376697093957,0.10248845583702804,0.2493747079934696,0.06853738408685106,0.07261632171896237,0.7373583409734212,0.06216896571562902,0.04057003188221242,0.20786899609827048,0.47613980226486463,0.2830868069062715,0.47032717175764205,0.4437228521335257,0.4910647949792366,0.4514676762093037,0.06034024707710994,0.20727285535298634,0.4694948808849704,0.7496401214918049,0.8577689069270078,0.30716579049534865,0.25144234532882215,0.6689050667348362,0.021629054627025024,0.31548192578494616,0.6140793086793759,0.8385443649661986,0.5624258761390697,0.7180908479373465,0.7015083303058476,0.735887786158677,0.4145297494839679,0.9579633916837351,0.19142299162804344,0.259926827413429,0.13882158397941646,0.753898854536144,0.6630531746437114,0.7343603607911837,0.5021095705352776,0.40373752723280876,0.2555086677240541,0.3667961057261977,0.2421291466973723,0.13055215705138457,0.5443397088424529,0.9528174438550494,0.49170263646151535,0.0018263537394644924,0.2050659925044116,0.03989548775336638,0.4414926696958468,0.8574462760666459,0.8942230627178525,0.8757773790893486,0.22307087973606077,0.12541606269619154,0.5578143356134784,0.1662520859634502,0.8193424516018926,0.7469104006414162,0.08843261560106774,0.35440150815619953,0.7320584747643137,0.9065411776235601,0.6107972705388547,0.44917386024434647,0.5403242151588805,0.043369644645666394,0.09870183539335864,0.09522031776255901,0.22125229027664606,0.48853442662141067,0.8160468292717151,0.566328237180775,0.19383409685576303,0.29429065816630207,0.9098225875760193,0.6282296043354565,0.08696350930048746,0.23865845294495136,0.49754369907505946,0.6742938655872517,0.7164857986193458,0.018229490684528615,0.8792492370236944,0.9442047786740893,0.15146737839433322,0.2949388673412834,0.9806424953017827,0.0011893095252737407,0.5674445777136512,0.7369977513097743,0.7003366242896605,0.11404855280575998,0.14394780062055124,0.8948885910956696,0.4690435390594887,0.06946364110376058,0.7412243136473837,0.22149292826087996,0.13295492429975075,0.9531487348921228,0.15449310422141638,0.5506905081658504,0.8510572701873333,0.26715209875565615,0.24209573417606411,0.1200656860469127,0.6464119737192098,0.1953690168132023,0.32531613073617516,0.812774040184415,0.9928923248966455,0.944051852736417,0.05808983146793234,0.1795541426609797,0.8968280676887195,0.27052067018989545,0.7782640950097135,0.5533035391384007,0.752793524107906,0.7644036026301233,0.2458151510896074,0.02318455122602936,0.2576079408897951,0.1540841785000424,0.781670420927334,0.10307593438709683,0.013644998049672452,0.9467985619689812,0.5447088947705117,0.4517010882551957,0.4458281990065962,0.7195402497112757,0.8687193583902539,0.3518912026691716,0.04138874658868996,0.9355434601741384,0.7714031812848521,0.42363015744644605,0.8816299333683837,0.5258870845269041,0.6166604858719651,0.6073560369793081,0.5319227963881399,0.21722894493593214,0.012398921652962525,0.5255221935533345,0.14254315286449026,0.13945507851149763,0.3387498146207415,0.6469660613585992,0.47981919107242255,0.7081071894139592,0.34348189000772456,0.05899111757886821,0.1814385641347538,0.3736987769010429,0.4439988640314412,0.2546457275970986,0.9741894384858147,0.4208870879932365,0.8739146324157738,0.5837005154870858,0.027140847088864994,0.5370078547789108,0.541816084541646,0.8979085973911567,0.622280718020479,0.776015158976896,0.9136204954117575,0.032654976992207985,0.7316120489315812,0.14162788641672552,0.16819689085619438,0.20385823195345454,0.25284145980536166,0.2251000853669709,0.663287291887223,0.5551753257969279,0.06124116358136655,0.004236169642276799,0.6571211425594672,0.3297108148067145,0.8083913958019859,0.37426716552629324,0.20868032246924195,0.07538476705084207,0.3908894591241898,0.31905191338460503,0.9050809749780098,0.7808855582700012,0.23763603674111122,0.9137637003576295,0.7757831767017662,0.11623420497427062,0.7888459718677132,0.024486780025113397,0.9401397968461231,0.7841494988566655,0.9670682494660903,0.5896112321662901,0.3944926181912112,0.04482966369017305,0.5510505289475751,0.25906237717838887,0.5289463651184287,0.2867792324729721,0.23780452982334577,0.0682987519920828,0.06437815263868285,0.3309586362502066,0.7634463031610055,0.05616176762990843,0.9269680736380708,0.3153780780379196,0.7573049596162171,0.3337421231986202,0.38864658695070875,0.5469786471919318,0.8519070635513273,0.23404227378829146,0.4171639907164313,0.6949503575400084,0.6239873765357984,0.22731843370469007,0.6542087212630143,0.8372802942651998,0.29779917970491154,0.5113008491587041,0.7866142251832593,0.4877251582000097,0.5996490232254823,0.423087831267984,0.026481879416660137,0.9017906917531711,0.3981492654850576,0.46409827276342774,0.2123137863871365,0.5795139491110299,0.5889434449560642,0.651013258994986,0.3134784415849401,0.9144839190280176,0.35031016440973484,0.7115049622607923,0.7504231215382298,0.5980834593833313,0.9675638919746519,0.565706006376292,0.18823693233128647,0.3805871022640661,0.7961599045388907,0.46509264817693396,0.11966785151156101,0.5208317572581083,0.6097542121778081,0.901188471168455,0.07979066459664197,0.5343087463202858,0.9950432703031189,0.005540595463554787,0.9021344669305575,0.3607428605501577,0.2799630219529452,0.008666263777031613,0.6595676799100993,0.534748550219132]}