diff --git a/assets/optimize-curves.js b/assets/optimize-curves.js new file mode 100644 index 0000000..74af54a --- /dev/null +++ b/assets/optimize-curves.js @@ -0,0 +1,37 @@ +const fs = require('fs'); +const optimum = 100; + +function find(path) { + let output = []; + for (let content of fs.readdirSync(path, {withFileTypes: true})) { + if (content.isDirectory()) { + output.push(...find(path + '/' + content.name)); + } else { + output.push(path + '/' + content.name); + } + } + return output; +} + +function optimizeCurve(path) { + let input = fs.readFileSync(path, 'utf-8') + .split('\n') + .map((x) => x.split(' ')); + + let output = [input[0]]; + + let step = Math.floor(input.length / optimum); + + for (let i = 1; i < input.length; i += step) { + output.push(input[i]); + } + + fs.writeFileSync(path.slice(0, - '-full.dat'.length) + '.dat', output.map((x) => x.join(' ')).join('\n')); +} + +for (let file of find('.')) { + if (file.endsWith('-full.dat')) { + optimizeCurve(file); + } +} + diff --git a/assets/preliminary-work/cdf.dat b/assets/preliminary-work/cdf.dat index 849a1fc..ee7c4dc 100644 --- a/assets/preliminary-work/cdf.dat +++ b/assets/preliminary-work/cdf.dat @@ -1,420 +1,102 @@ x y1 y2 -50 0.131942 0.238320 -100 0.205725 0.356426 -150 0.242529 0.399903 -200 0.278507 0.436995 -250 0.303498 0.470774 -300 0.326138 0.501938 -350 0.345066 0.530680 -400 0.366400 0.557247 -450 0.380507 0.581496 -500 0.397580 0.603497 -550 0.412134 0.623504 -600 0.421523 0.641811 -650 0.428828 0.659131 -700 0.434932 0.675321 -750 0.441448 0.690581 -800 0.449477 0.705094 -850 0.459193 0.718605 -900 0.465525 0.731273 -950 0.473074 0.743392 -1000 0.480954 0.755044 -1050 0.487500 0.766290 -1100 0.492953 0.777063 -1150 0.497089 0.787407 -1200 0.501430 0.797337 -1250 0.507154 0.806836 -1300 0.510778 0.815817 -1350 0.517049 0.824390 -1400 0.521230 0.832663 -1450 0.522772 0.840678 -1500 0.524264 0.848443 -1550 0.526208 0.855931 -1600 0.529293 0.863128 -1650 0.532167 0.869959 -1700 0.534288 0.876448 -1750 0.539359 0.882622 -1800 0.543343 0.888526 -1850 0.546010 0.894202 -1900 0.548814 0.899647 -1950 0.552221 0.904834 -2000 0.556037 0.909772 -2050 0.560241 0.914487 -2100 0.565780 0.918977 -2150 0.570375 0.923214 -2200 0.573157 0.927178 -2250 0.578510 0.930889 +1 0.005755 0.009458 +210 0.283952 0.443984 +419 0.371935 0.566748 +628 0.426774 0.651649 +837 0.457305 0.715185 +1046 0.487327 0.765409 +1255 0.507299 0.807756 +1464 0.523058 0.842872 +1673 0.532736 0.872979 +1882 0.548073 0.897718 +2091 0.564363 0.918185 2300 0.584053 0.934271 -2350 0.593370 0.937358 -2400 0.601812 0.940252 -2450 0.617184 0.943003 -2500 0.624025 0.945608 -2550 0.630036 0.948090 -2600 0.637701 0.950440 -2650 0.646357 0.952698 -2700 0.653498 0.954861 -2750 0.665690 0.956936 -2800 0.675088 0.958936 -2850 0.686781 0.960854 -2900 0.686909 0.962623 -2950 0.687540 0.964227 -3000 0.687849 0.965722 -3050 0.688321 0.967139 -3100 0.693394 0.968524 -3150 0.694474 0.969839 -3200 0.705058 0.971154 -3250 0.708841 0.972438 -3300 0.710565 0.973670 -3350 0.720899 0.974870 -3400 0.725468 0.976020 -3450 0.731085 0.977133 -3500 0.736501 0.978201 -3550 0.738313 0.979218 -3600 0.743687 0.980205 -3650 0.752294 0.981191 -3700 0.754119 0.982101 -3750 0.757645 0.983005 -3800 0.758436 0.983841 -3850 0.759179 0.984663 -3900 0.762766 0.985485 -3950 0.767053 0.986257 -4000 0.768039 0.986997 -4050 0.768951 0.987736 -4100 0.770770 0.988425 -4150 0.773462 0.989082 -4200 0.782674 0.989740 -4250 0.784454 0.990392 -4300 0.791198 0.990968 -4350 0.800382 0.991543 -4400 0.805439 0.992118 -4450 0.806450 0.992688 -4500 0.810880 0.993181 -4550 0.812841 0.993674 -4600 0.813789 0.994167 -4650 0.817104 0.994660 -4700 0.821348 0.995153 -4750 0.823234 0.995582 -4800 0.825861 0.995993 -4850 0.829420 0.996404 -4900 0.832822 0.996815 -4950 0.839297 0.997170 -5000 0.842057 0.997499 -5050 0.845612 0.997827 -5100 0.850905 0.998082 -5150 0.854108 0.998329 -5200 0.857518 0.998575 -5250 0.859906 0.998817 -5300 0.862068 0.998981 -5350 0.863851 0.999145 -5400 0.865889 0.999310 -5450 0.868748 0.999474 -5500 0.875016 0.999637 -5550 0.879465 0.999719 -5600 0.884537 0.999801 -5650 0.891037 0.999883 -5700 0.894935 0.999965 -5750 0.899050 1.000000 -5800 0.906692 1.000000 -5850 0.914201 1.000000 -5900 0.919515 1.000000 -5950 0.925242 1.000000 -6000 0.931547 1.000000 -6050 0.936965 1.000000 -6100 0.943933 1.000000 -6150 0.948192 1.000000 -6200 0.952154 1.000000 -6250 0.959043 1.000000 -6300 0.965127 1.000000 -6350 0.969322 1.000000 -6400 0.971877 1.000000 -6450 0.974122 1.000000 -6500 0.975494 1.000000 -6550 0.977028 1.000000 -6600 0.979805 1.000000 -6650 0.980725 1.000000 -6700 0.982934 1.000000 -6750 0.984247 1.000000 -6800 0.984938 1.000000 -6850 0.986581 1.000000 -6900 0.987715 1.000000 -6950 0.988011 1.000000 -7000 0.988596 1.000000 -7050 0.989161 1.000000 -7100 0.989237 1.000000 -7150 0.989559 1.000000 -7200 0.989738 1.000000 -7250 0.990027 1.000000 -7300 0.990590 1.000000 -7350 0.991285 1.000000 -7400 0.991809 1.000000 -7450 0.992369 1.000000 -7500 0.992830 1.000000 -7550 0.993457 1.000000 -7600 0.993936 1.000000 -7650 0.994172 1.000000 -7700 0.994531 1.000000 -7750 0.994823 1.000000 -7800 0.995125 1.000000 -7850 0.995492 1.000000 -7900 0.995688 1.000000 -7950 0.995964 1.000000 -8000 0.996158 1.000000 -8050 0.996327 1.000000 -8100 0.996432 1.000000 -8150 0.996633 1.000000 -8200 0.996780 1.000000 -8250 0.996848 1.000000 -8300 0.996981 1.000000 -8350 0.997045 1.000000 -8400 0.997114 1.000000 -8450 0.997242 1.000000 -8500 0.997315 1.000000 -8550 0.997366 1.000000 -8600 0.997487 1.000000 -8650 0.997601 1.000000 -8700 0.997656 1.000000 -8750 0.997775 1.000000 -8800 0.997900 1.000000 -8850 0.997944 1.000000 -8900 0.998108 1.000000 -8950 0.998161 1.000000 -9000 0.998217 1.000000 -9050 0.998389 1.000000 -9100 0.998480 1.000000 -9150 0.998672 1.000000 -9200 0.998779 1.000000 -9250 0.998879 1.000000 -9300 0.998945 1.000000 -9350 0.999020 1.000000 -9400 0.999121 1.000000 -9450 0.999205 1.000000 -9500 0.999285 1.000000 -9550 0.999412 1.000000 -9600 0.999463 1.000000 -9650 0.999499 1.000000 -9700 0.999551 1.000000 -9750 0.999589 1.000000 -9800 0.999625 1.000000 -9850 0.999643 1.000000 -9900 0.999655 1.000000 -9950 0.999689 1.000000 -10000 0.999694 1.000000 -10050 0.999698 1.000000 -10100 0.999827 1.000000 -10150 0.999870 1.000000 -10200 0.999875 1.000000 -10250 0.999875 1.000000 -10300 0.999877 1.000000 -10350 0.999878 1.000000 -10400 0.999880 1.000000 -10450 0.999880 1.000000 -10500 0.999993 1.000000 -10550 0.999993 1.000000 -10600 0.999993 1.000000 -10650 1.000000 1.000000 -10700 1.000000 1.000000 -10750 1.000000 1.000000 -10800 1.000000 1.000000 -10850 1.000000 1.000000 -10900 1.000000 1.000000 -10950 1.000000 1.000000 -11000 1.000000 1.000000 -11050 1.000000 1.000000 -11100 1.000000 1.000000 -11150 1.000000 1.000000 -11200 1.000000 1.000000 -11250 1.000000 1.000000 -11300 1.000000 1.000000 -11350 1.000000 1.000000 -11400 1.000000 1.000000 -11450 1.000000 1.000000 -11500 1.000000 1.000000 -11550 1.000000 1.000000 -11600 1.000000 1.000000 -11650 1.000000 1.000000 -11700 1.000000 1.000000 -11750 1.000000 1.000000 -11800 1.000000 1.000000 -11850 1.000000 1.000000 -11900 1.000000 1.000000 -11950 1.000000 1.000000 -12000 1.000000 1.000000 -12050 1.000000 1.000000 -12100 1.000000 1.000000 -12150 1.000000 1.000000 -12200 1.000000 1.000000 -12250 1.000000 1.000000 -12300 1.000000 1.000000 -12350 1.000000 1.000000 -12400 1.000000 1.000000 -12450 1.000000 1.000000 -12500 1.000000 1.000000 -12550 1.000000 1.000000 -12600 1.000000 1.000000 -12650 1.000000 1.000000 -12700 1.000000 1.000000 +2509 0.625557 0.946067 +2718 0.663158 0.955622 +2927 0.687540 0.963509 +3136 0.694305 0.969471 +3345 0.720457 0.974755 +3554 0.742463 0.979297 +3763 0.757721 0.983233 +3972 0.767483 0.986583 +4181 0.778537 0.989490 +4390 0.805164 0.992003 +4599 0.813789 0.994157 +4808 0.826447 0.996059 +5017 0.843146 0.997610 +5226 0.858641 0.998703 +5435 0.867922 0.999425 +5644 0.890417 0.999873 +5853 0.914330 1.000000 +6062 0.939489 1.000000 +6271 0.960974 1.000000 +6480 0.975065 1.000000 +6689 0.982177 1.000000 +6898 0.987715 1.000000 +7107 0.989260 1.000000 +7316 0.990782 1.000000 +7525 0.993237 1.000000 +7734 0.994721 1.000000 +7943 0.995942 1.000000 +8152 0.996636 1.000000 +8361 0.997071 1.000000 +8570 0.997448 1.000000 +8779 0.997860 1.000000 +8988 0.998217 1.000000 +9197 0.998779 1.000000 +9406 0.999129 1.000000 +9615 0.999463 1.000000 +9824 0.999635 1.000000 +10033 0.999694 1.000000 +10242 0.999875 1.000000 +10451 0.999880 1.000000 +10660 1.000000 1.000000 +10869 1.000000 1.000000 +11078 1.000000 1.000000 +11287 1.000000 1.000000 +11496 1.000000 1.000000 +11705 1.000000 1.000000 +11914 1.000000 1.000000 +12123 1.000000 1.000000 +12332 1.000000 1.000000 +12541 1.000000 1.000000 12750 1.000000 1.000000 -12800 1.000000 1.000000 -12850 1.000000 1.000000 -12900 1.000000 1.000000 -12950 1.000000 1.000000 -13000 1.000000 1.000000 -13050 1.000000 1.000000 -13100 1.000000 1.000000 -13150 1.000000 1.000000 -13200 1.000000 1.000000 -13250 1.000000 1.000000 -13300 1.000000 1.000000 -13350 1.000000 1.000000 -13400 1.000000 1.000000 -13450 1.000000 1.000000 -13500 1.000000 1.000000 -13550 1.000000 1.000000 -13600 1.000000 1.000000 -13650 1.000000 1.000000 -13700 1.000000 1.000000 -13750 1.000000 1.000000 -13800 1.000000 1.000000 -13850 1.000000 1.000000 -13900 1.000000 1.000000 -13950 1.000000 1.000000 -14000 1.000000 1.000000 -14050 1.000000 1.000000 -14100 1.000000 1.000000 -14150 1.000000 1.000000 -14200 1.000000 1.000000 -14250 1.000000 1.000000 -14300 1.000000 1.000000 -14350 1.000000 1.000000 -14400 1.000000 1.000000 -14450 1.000000 1.000000 -14500 1.000000 1.000000 -14550 1.000000 1.000000 -14600 1.000000 1.000000 -14650 1.000000 1.000000 -14700 1.000000 1.000000 -14750 1.000000 1.000000 -14800 1.000000 1.000000 -14850 1.000000 1.000000 -14900 1.000000 1.000000 -14950 1.000000 1.000000 -15000 1.000000 1.000000 -15050 1.000000 1.000000 -15100 1.000000 1.000000 -15150 1.000000 1.000000 -15200 1.000000 1.000000 -15250 1.000000 1.000000 -15300 1.000000 1.000000 -15350 1.000000 1.000000 -15400 1.000000 1.000000 -15450 1.000000 1.000000 -15500 1.000000 1.000000 -15550 1.000000 1.000000 -15600 1.000000 1.000000 -15650 1.000000 1.000000 -15700 1.000000 1.000000 -15750 1.000000 1.000000 -15800 1.000000 1.000000 -15850 1.000000 1.000000 -15900 1.000000 1.000000 -15950 1.000000 1.000000 -16000 1.000000 1.000000 -16050 1.000000 1.000000 -16100 1.000000 1.000000 -16150 1.000000 1.000000 -16200 1.000000 1.000000 -16250 1.000000 1.000000 -16300 1.000000 1.000000 -16350 1.000000 1.000000 -16400 1.000000 1.000000 -16450 1.000000 1.000000 -16500 1.000000 1.000000 -16550 1.000000 1.000000 -16600 1.000000 1.000000 -16650 1.000000 1.000000 -16700 1.000000 1.000000 -16750 1.000000 1.000000 -16800 1.000000 1.000000 -16850 1.000000 1.000000 -16900 1.000000 1.000000 -16950 1.000000 1.000000 -17000 1.000000 1.000000 -17050 1.000000 1.000000 -17100 1.000000 1.000000 -17150 1.000000 1.000000 -17200 1.000000 1.000000 -17250 1.000000 1.000000 -17300 1.000000 1.000000 -17350 1.000000 1.000000 -17400 1.000000 1.000000 -17450 1.000000 1.000000 -17500 1.000000 1.000000 -17550 1.000000 1.000000 -17600 1.000000 1.000000 -17650 1.000000 1.000000 -17700 1.000000 1.000000 -17750 1.000000 1.000000 -17800 1.000000 1.000000 -17850 1.000000 1.000000 -17900 1.000000 1.000000 -17950 1.000000 1.000000 -18000 1.000000 1.000000 -18050 1.000000 1.000000 -18100 1.000000 1.000000 -18150 1.000000 1.000000 -18200 1.000000 1.000000 -18250 1.000000 1.000000 -18300 1.000000 1.000000 -18350 1.000000 1.000000 -18400 1.000000 1.000000 -18450 1.000000 1.000000 -18500 1.000000 1.000000 -18550 1.000000 1.000000 -18600 1.000000 1.000000 -18650 1.000000 1.000000 -18700 1.000000 1.000000 -18750 1.000000 1.000000 -18800 1.000000 1.000000 -18850 1.000000 1.000000 -18900 1.000000 1.000000 -18950 1.000000 1.000000 -19000 1.000000 1.000000 -19050 1.000000 1.000000 -19100 1.000000 1.000000 -19150 1.000000 1.000000 -19200 1.000000 1.000000 -19250 1.000000 1.000000 -19300 1.000000 1.000000 -19350 1.000000 1.000000 -19400 1.000000 1.000000 -19450 1.000000 1.000000 -19500 1.000000 1.000000 -19550 1.000000 1.000000 -19600 1.000000 1.000000 -19650 1.000000 1.000000 -19700 1.000000 1.000000 -19750 1.000000 1.000000 -19800 1.000000 1.000000 -19850 1.000000 1.000000 -19900 1.000000 1.000000 -19950 1.000000 1.000000 -20000 1.000000 1.000000 -20050 1.000000 1.000000 -20100 1.000000 1.000000 -20150 1.000000 1.000000 -20200 1.000000 1.000000 -20250 1.000000 1.000000 -20300 1.000000 1.000000 -20350 1.000000 1.000000 -20400 1.000000 1.000000 -20450 1.000000 1.000000 -20500 1.000000 1.000000 -20550 1.000000 1.000000 -20600 1.000000 1.000000 -20650 1.000000 1.000000 -20700 1.000000 1.000000 -20750 1.000000 1.000000 -20800 1.000000 1.000000 -20850 1.000000 1.000000 -20900 1.000000 1.000000 -20950 1.000000 1.000000 \ No newline at end of file +12959 1.000000 1.000000 +13168 1.000000 1.000000 +13377 1.000000 1.000000 +13586 1.000000 1.000000 +13795 1.000000 1.000000 +14004 1.000000 1.000000 +14213 1.000000 1.000000 +14422 1.000000 1.000000 +14631 1.000000 1.000000 +14840 1.000000 1.000000 +15049 1.000000 1.000000 +15258 1.000000 1.000000 +15467 1.000000 1.000000 +15676 1.000000 1.000000 +15885 1.000000 1.000000 +16094 1.000000 1.000000 +16303 1.000000 1.000000 +16512 1.000000 1.000000 +16721 1.000000 1.000000 +16930 1.000000 1.000000 +17139 1.000000 1.000000 +17348 1.000000 1.000000 +17557 1.000000 1.000000 +17766 1.000000 1.000000 +17975 1.000000 1.000000 +18184 1.000000 1.000000 +18393 1.000000 1.000000 +18602 1.000000 1.000000 +18811 1.000000 1.000000 +19020 1.000000 1.000000 +19229 1.000000 1.000000 +19438 1.000000 1.000000 +19647 1.000000 1.000000 +19856 1.000000 1.000000 +20065 1.000000 1.000000 +20274 1.000000 1.000000 +20483 1.000000 1.000000 +20692 1.000000 1.000000 +20901 1.000000 1.000000 \ No newline at end of file diff --git a/assets/preliminary-work/script.js b/assets/preliminary-work/script.js deleted file mode 100644 index 40be16f..0000000 --- a/assets/preliminary-work/script.js +++ /dev/null @@ -1,14 +0,0 @@ -const fs = require('fs'); -const step = 50; - -let input = fs.readFileSync('cdf-full.dat', 'utf-8') - .split('\n') - .map((x) => x.split(' ')); - -let output = []; - -for (let i = 0; i < input.length; i += step) { - output.push(input[i]); -} - -fs.writeFileSync('cdf.dat', output.map((x) => x.join(' ')).join('\n')); diff --git a/assets/system-bookmarks/bookmark-as.xml b/assets/system-bookmarks/bookmark-as.xml new file mode 100644 index 0000000..0265202 --- /dev/null +++ b/assets/system-bookmarks/bookmark-as.xml @@ -0,0 +1,13 @@ + + + b1/ + + repr1/ + + + + + + + diff --git a/assets/system-bookmarks/bookmark/faces.png b/assets/system-bookmarks/bookmark/faces.png new file mode 100644 index 0000000..8c09a2b Binary files /dev/null and b/assets/system-bookmarks/bookmark/faces.png differ diff --git a/assets/system-bookmarks/bookmark/geometry.png b/assets/system-bookmarks/bookmark/geometry.png new file mode 100644 index 0000000..121d04c Binary files /dev/null and b/assets/system-bookmarks/bookmark/geometry.png differ diff --git a/assets/system-bookmarks/bookmark/ground-truth.png b/assets/system-bookmarks/bookmark/ground-truth.png new file mode 100644 index 0000000..72d3aad Binary files /dev/null and b/assets/system-bookmarks/bookmark/ground-truth.png differ diff --git a/assets/system-bookmarks/bookmark/texture.png b/assets/system-bookmarks/bookmark/texture.png new file mode 100644 index 0000000..62a2b81 Binary files /dev/null and b/assets/system-bookmarks/bookmark/texture.png differ diff --git a/assets/system-bookmarks/precomputation/greedy-full.dat b/assets/system-bookmarks/precomputation/greedy-full.dat new file mode 100644 index 0000000..9cef7a8 --- /dev/null +++ b/assets/system-bookmarks/precomputation/greedy-full.dat @@ -0,0 +1,3215 @@ +x y +2096.775 5.304463744060101 +2097.299 15.264629353061585 +2108.382 15.206311580597973 +2152.47 15.177212194343687 +2163.352 15.176929904395227 +2174.234 15.176929904395227 +2185.116 15.176929904395227 +2230.302 15.178140046599935 +2275.488 15.178140046599935 +2320.674 15.178140046599935 +2494.683 15.179032618032144 +2668.692 15.179032618032144 +2842.701 15.179032618032144 +2975.5 15.583632512063708 +2995.449 15.655265910209888 +2995.804 15.656281194373024 +2996.601 15.658330670782467 +3001.653 15.671999252940193 +3009.366 15.694767002298558 +3009.943 15.696622645710695 +3011.321 15.701119195879622 +3015.832 15.714366033493693 +3140.5 15.960129537643493 +3142.165 15.963942790883076 +3145.107 15.968834359367357 +3146.16 15.970325806727153 +3151.727 15.980245662755571 +3152.67 15.982680522504877 +3156.189 15.991976390541721 +3162.018 16.006972559035557 +3162.202 16.00744998574144 +3176.722 16.042645753642653 +3278.352 16.33223526359845 +3282.563 16.344017691578465 +3296.544 16.384165920511876 +3311.417 16.43407347591525 +3314.034 16.44257274698656 +3314.528 16.443862030257243 +3315.885 16.447502225052048 +3334.435 16.514031360675098 +3335.149 16.51638151353464 +3417.108 16.819368578719704 +3420.743 16.832044490198946 +3444.309 16.911677420224567 +3452.312 16.933944939461426 +3466.441 16.970743182544027 +3479.951 17.015661103455454 +3480.581 17.017774382273114 +3480.701 17.01812563443403 +3487.165 17.0411764546527 +3562.215 17.300152635505246 +3580.898 17.363836777159776 +3583.065 17.371572699263986 +3603.759 17.447012812374904 +3629.981 17.54983618187487 +3631.288 17.553990295878336 +3635.077 17.560891328090428 +3646.004 17.577093651044738 +3646.117 17.577292001582858 +3717.199 17.703307894255513 +3719.176 17.707199265215475 +3743.18 17.757191946789057 +3756.048 17.780885909908257 +3760.96 17.80455914748201 +3765.701 17.82544457063185 +3768.175 17.836345892005152 +3779.102 17.856208186420048 +3794.24 17.878914904076744 +3797.384 17.88497518226989 +3809.409 17.908648467065632 +3862.731 18.0227629831341 +3867.583 18.03137235982936 +3915.091 18.10556803858306 +3922.767 18.119945390825187 +3931.452 18.135055407016615 +3932.236 18.13643474327346 +3932.672 18.15272909425012 +3953.039 18.188353031939084 +3955.146 18.19110295239544 +3964.626 18.224882301766304 +3972.057 18.252482779422508 +4016.042 18.304979527052197 +4023.672 18.31703788258926 +4040.945 18.345398156813374 +4056.704 18.3725860621985 +4061.738 18.379774263335303 +4079.878 18.400335252149944 +4095.25 18.420305940249417 +4118.526 18.450568307719838 +4129.357 18.46256946943151 +4142.092 18.512766154286183 +4168.55 18.536466771070756 +4169.02 18.536705958795103 +4175.698 18.54399651402049 +4176.134 18.544405362644333 +4201.886 18.570881874762094 +4218.115 18.589007065953005 +4220.828 18.592240266686503 +4246.914 18.642299180797906 +4251.184 18.65019931839923 +4272.125 18.69863674357977 +4285.546 18.729681235657715 +4312.834 18.802297857329243 +4321.805 18.820942304023934 +4340.388 18.862513628518652 +4356.091 18.895914357601825 +4366.997 18.918707619726053 +4373.931 18.932556874966096 +4402.532 18.97219393237861 +4419.845 18.99340660282074 +4423.572 18.99802168430256 +4448.951 19.029969441941642 +4458.417 19.03979766354671 +4488.445 19.077178681542 +4492.524 19.08260682443347 +4529.575 19.13205091065533 +4530.02 19.132766233026715 +4536.109 19.16787327183772 +4542.198 19.176341161971113 +4558.807 19.201067872833008 +4580.746 19.241638617253948 +4582.339 19.244759161158424 +4597.866 19.27485485631661 +4599.218 19.27698143705211 +4613.645 19.30117748527149 +4632.311 19.330715962148247 +4639.838 19.34261611168315 +4680.05 19.41313830133642 +4684.482 19.42118685569443 +4728.91 19.492712739386107 +4730.038 19.493650656027096 +4736.091 19.50894938496913 +4736.931 19.51503525173997 +4740.861 19.54341466769393 +4741.983 19.549602319923387 +4747.963 19.58218823502871 +4757.113 19.588154176649276 +4766.153 19.5951804764174 +4766.623 19.595537220615594 +4793.548 19.616004347106436 +4802.145 19.621731887486632 +4813.963 19.627914572745823 +4828.554 19.639994652142473 +4829.626 19.641292134385022 +4892.971 19.718107981987067 +4897.821 19.723781037184025 +4911.705 19.74035243641464 +4922.159 19.7512642278681 +4939.066 19.79251255466924 +4952.465 19.826747755129915 +4963.382 19.85110204864795 +4973.256 19.873385273391186 +4982.227 19.90388815838388 +4982.248 19.9039370968507 +5000.328 19.93840454706613 +5039.727 20.04524244811784 +5054.198 20.09107748507601 +5076.399 20.162457245398784 +5094.07 20.22201420108224 +5097.161 20.228552838251247 +5110.977 20.260051627523794 +5118.661 20.277088480186165 +5126.093 20.295164819697284 +5160.541 20.37629474129993 +5168.883 20.389012761838824 +5202.519 20.44917741437351 +5205.272 20.45279575550707 +5206.193 20.45406797694252 +5221.81 20.47776504387774 +5240.69 20.508950343246592 +5248.748 20.52281690812873 +5261.391 20.54685175363979 +5264.595 20.552912270279222 +5273.431 20.57271092824083 +5274.559 20.574870437456287 +5316.601 20.666178213527978 +5342.634 20.71848720309519 +5356.137 20.751036092851493 +5362.895 20.77166328227328 +5365.624 20.78099195310816 +5392.614 20.870389673456824 +5404.814 20.905177145088416 +5412.652 20.9272788355892 +5421.546 20.95156503093059 +5422.985 20.9557751876129 +5440.851 21.004554961468735 +5457.121 21.043662334296787 +5460.156 21.051956818011917 +5468.298 21.07420844450568 +5479.909 21.1139679432521 +5483.736 21.124426918269492 +5487.831 21.133079040909415 +5489.205 21.135982097443545 +5508.91 21.17744104425446 +5513.747 21.18761800064748 +5517.54 21.195309856144476 +5519.191 21.198005795434995 +5521.391 21.202304788441733 +5529.531 21.2148202508689 +5537.721 21.224784907161766 +5553.161 21.243593432935445 +5554.729 21.24535427912392 +5578.111 21.272657550927523 +5586.834 21.282290119909575 +5645.582 21.3172934838146 +5674.984 21.33726723825954 +5686.068 21.344423142735746 +5687.074 21.34529722049095 +5696.196 21.359433312414225 +5699.273 21.36582876969072 +5701.212 21.37026174130433 +5702.568 21.374584686141457 +5710.002 21.397362429925423 +5710.722 21.399424101892308 +5723.446 21.42465896817901 +5732.756 21.46983615103525 +5733.443 21.473309120446302 +5790.601 21.624882682856715 +5808.761 21.67036909712567 +5818.545 21.701829763856907 +5826.887 21.730968949769466 +5834.125 21.753279425837135 +5835.659 21.757625126484495 +5843.193 21.787695402936816 +5844.729 21.791159498308467 +5847.783 21.802371554339373 +5848.038 21.80317177548108 +5848.115 21.803417182604175 +5848.941 21.80607527243235 +5849.384 21.80715931017367 +5849.827 21.80824334791499 +5851.626 21.835716048547468 +5854.135 21.874719102472852 +5859.148 21.945549082341422 +5862.345 21.95122782435091 +5865.542 21.9554005560541 +5870.367 21.962816945864088 +5877.758 21.978048590436156 +5878.961 21.98069690009304 +5880.313 21.98293414666388 +5888.061 21.995881123785917 +5904.667 22.026264710558312 +5933.798 22.07512914056686 +5967.626 22.1265077242847 +5979.35 22.165481457514154 +5981.339 22.168503563833102 +5994.861 22.187204101054604 +5999.773 22.18447433864627 +6004.653 22.221465397019465 +6011.529 22.286607709121352 +6012.608 22.296580825945632 +6014.777 22.316763134403907 +6015.196 22.317252672859482 +6023.236 22.380020252261186 +6023.338 22.380810236917508 +6025.332 22.38302417318539 +6029.781 22.388393403115323 +6034.482 22.394066756655572 +6034.959 22.394761648381255 +6040.263 22.401699802882533 +6044.785 22.407615024348367 +6045.822 22.411647617374538 +6045.97 22.412271866121337 +6046.681 22.41584186674638 +6049.938 22.43165332019716 +6052.15 22.439015084705733 +6055.507 22.45285107100213 +6061.276 22.461740643017677 +6062.054 22.462938696706733 +6064.93 22.467371205208245 +6066.192 22.469344659597986 +6070.31 22.475655796453182 +6078.452 22.48007606557438 +6089.384 22.49107364663249 +6100.051 22.50193954494475 +6110.718 22.512430043616007 +6126.857 22.528301999935064 +6138.306 22.540684511206567 +6150.505 22.55100155864796 +6180.539 22.578401615359002 +6186.546 22.58394119813014 +6196.448 22.594112809928323 +6208.372 22.603526486443805 +6215.012 22.608922007877286 +6216.081 22.6097871457495 +6220.163 22.618547640486835 +6223.148 22.621458119230194 +6223.393 22.62207103046213 +6223.579 22.622539924953074 +6234.918 22.65112209738974 +6238.419 22.639116590315464 +6243.69 22.621041233542034 +6246.536 22.625296439469604 +6255.038 22.63800823173811 +6256.574 22.638837198743573 +6256.931 22.639026897607827 +6272.669 22.653182345864057 +6290.5 22.669220330223993 +6291.291 22.67005366017867 +6305.489 22.678937745662424 +6320.588 22.687380436363323 +6333.047 22.698092479252477 +6333.517 22.698491409482774 +6347.984 22.710770821486477 +6359.962 22.718051910002387 +6361.698 22.718949724139843 +6363.99 22.719755214779596 +6379.011 22.722854482045697 +6385.854 22.72400270336933 +6386.152 22.724052716552936 +6396.782 22.727021002609273 +6415.636 22.730935896837014 +6435.432 22.748177485836187 +6436.655 22.750395111171716 +6436.734 22.750488883003214 +6444.868 22.760428471933817 +6449.733 22.783421501026723 +6456.917 22.818011473990325 +6459.46 22.81939937073694 +6463.202 22.839131367446075 +6475.052 22.901617781396723 +6476.185 22.90203509465067 +6483.525 22.90420987540012 +6493.283 22.946446013078592 +6498.757 22.946736737557224 +6503.067 22.94696564192384 +6505.428 22.94709103477989 +6509.539 22.947309370244202 +6512.473 22.947787435896924 +6520.727 22.949132341792488 +6521.703 22.949298795806094 +6524.345 22.94975230574312 +6528.241 22.95047278658985 +6532.209 22.951054890410518 +6544.632 22.952858689834446 +6553.797 22.95858213699935 +6554.313 22.95888781670615 +6564.2 22.965990481848365 +6567.656 22.9680319513175 +6571.836 22.986584737512093 +6574.087 22.99554337561693 +6582.59 23.029384024131105 +6582.66 23.029655724343577 +6583.974 23.029682522925135 +6593.344 23.029947683734832 +6597.664 23.030069935036632 +6603.803 23.030243662060187 +6604.098 23.030549903484467 +6612.668 23.039446640639564 +6616.768 23.04370295596464 +6624.036 23.05136557966031 +6626.655 23.051481877019935 +6636.333 23.051755134306912 +6636.542 23.052024367671024 +6644.269 23.06197827295558 +6645.438 23.063550931405462 +6646.429 23.063635502681656 +6659.192 23.093794687379447 +6661.046 23.09395290649757 +6664.947 23.094286312464078 +6671.955 23.09608168385718 +6674.627 23.096767156345404 +6674.834 23.096818760166368 +6677.38 23.096873416007874 +6684.721 23.097145120974197 +6687.454 23.097246274723414 +6694.608 23.097959491974162 +6699.135 23.103799506393486 +6703.662 23.10425082516538 +6712.983 23.23057336151585 +6726.683 23.241050457093717 +6745.586 23.256283321852248 +6757.775 23.26610148217371 +6762.923 23.280330789652954 +6769.475 23.298444574909027 +6777.741 23.306337972525853 +6786.007 23.31300092236057 +6806.43 23.32951528798351 +6810.132 23.33249945689401 +6818.398 23.341672414711624 +6819.217 23.342332607671565 +6825.295 23.347253076049423 +6826.664 23.348509875948015 +6828.082 23.34981165991894 +6840.258 23.361998325341634 +6844.416 23.366159845211243 +6850.928 23.37261347985719 +6860.585 23.40882093243859 +6862.158 23.414666009413295 +6867.69 23.437125475661023 +6868.267 23.439330171259236 +6875.956 23.467953633845855 +6884.222 23.495202910636444 +6884.73 23.49712783905433 +6887.887 23.500665757277734 +6895.484 23.506692791947536 +6897.402 23.50738243737172 +6898.796 23.50750254592186 +6903.798 23.507913777383717 +6905.528 23.508505298195743 +6906.238 23.508824768197062 +6913.654 23.512161654858694 +6916.992 23.51673403723362 +6924.408 23.528083255507585 +6925.276 23.528613195539183 +6927.659 23.52935124023632 +6935.162 23.530470238992834 +6938.326 23.53094211851644 +6945.916 23.53207409246845 +6946.754 23.532199071937725 +6948.996 23.532573618539782 +6956.641 23.533902180546445 +6957.64 23.534057887536235 +6966.528 23.54007289507 +6976.415 23.546763981870892 +6979.172 23.55126190189364 +6979.642 23.552028685502886 +6987.034 23.564088397076365 +6988.558 23.568788989605498 +6995.863 23.585489660666255 +6996.824 23.587680922344997 +6999.94 23.594298283102464 +7004.7 23.602249183765213 +7005.09 23.602895305903704 +7006.378 23.606723866887307 +7008.086 23.60922718089283 +7013.315 23.616537645430643 +7020.741 23.62670119816639 +7033.445 23.64574501894844 +7047.334 23.6674680658321 +7054.838 23.71130949064844 +7062.338 23.745259332307697 +7077.342 23.748984601341363 +7086.834 23.75134132312672 +7092.346 23.752935244419312 +7103.98 23.756299482503135 +7104.586 23.75647064736922 +7124.531 23.762104118085524 +7130.113 23.765530703101756 +7144.715 23.77233139235501 +7148.189 23.77325625623485 +7149.832 23.7737307780822 +7154.334 23.77490520170112 +7159.41 23.776229363027124 +7164.899 23.78353342939306 +7167.754 23.78686758791042 +7170.132 23.7895907604354 +7176.109 23.791222124918374 +7178.009 23.792324344850996 +7186.639 23.79776020082659 +7187.319 23.79797963928932 +7187.767 23.79816020530057 +7191.974 23.799656549810422 +7196.061 23.805430958363754 +7197.169 23.806924394571876 +7206.45 23.819433944614804 +7207.699 23.94896662672465 +7210.67 24.260358863039873 +7211.516 24.26147843104633 +7229.513 24.284411167975954 +7234.178 24.285481163319027 +7245.043 24.288077350965423 +7248.177 24.28914973802525 +7249.646 24.28956928000569 +7257.649 24.29185491272823 +7259.404 24.292356135448227 +7267.121 24.294638694804444 +7279.168 24.31452103129816 +7279.309 24.31475531572708 +7289.055 24.31774711969155 +7298.942 24.32066802248747 +7299.493 24.32083080365877 +7302.746 24.326252604428742 +7307.545 24.334202251733736 +7308.829 24.33632782207027 +7315.481 24.347503001908652 +7315.887 24.348234439897748 +7322.132 24.35950333153855 +7325.368 24.365082586204398 +7333.783 24.378567810848708 +7335.255 24.37904714631765 +7345.142 24.38226670459305 +7352.377 24.409760029082108 +7355.088 24.420243936719736 +7356.079 24.424176449778898 +7372.634 24.432422604185426 +7377.905 24.44169545370792 +7381.492 24.44799039247732 +7382.456 24.449672908301604 +7392.271 24.467306308088652 +7404.337 24.47248835234301 +7405.188 24.473817630744477 +7406.711 24.475938620300898 +7408.234 24.47805960985733 +7419.341 24.493894262697182 +7421.216 24.49444382872354 +7434.345 24.49829196331557 +7449.349 24.502689663933964 +7455.039 24.504540370788614 +7462.63 24.506765307165193 +7464.569 24.50733362166515 +7469.024 24.50885262829153 +7471.468 24.509548195759983 +7481.638 24.516812566608976 +7493.366 24.525189894697927 +7508.37 24.565648291755444 +7523.374 24.574625991094557 +7529.746 24.578438701051155 +7538.378 24.58883469471119 +7538.721 24.58928321905379 +7550.078 24.59901942450176 +7551.862 24.60071095979342 +7562.806 24.627126371680227 +7567.579 24.630756051403605 +7582.948 24.640331261258723 +7584.621 24.641318354677725 +7591.695 24.64549211370103 +7594.057 24.64745087717292 +7618.511 24.66808628513494 +7623.481 24.673203183202308 +7628.053 24.678702832490806 +7634.148 24.686026784900772 +7641.554 24.693568650863984 +7643.653 24.69576502382155 +7644.815 24.69644459570523 +7644.944 24.69652041797501 +7678.025 24.716541171687545 +7679.317 24.7176002328535 +7690.621 24.726635884981924 +7690.647 24.726650841821638 +7720.087 24.74358707636496 +7720.557 24.743824405944693 +7729.216 24.748727607372302 +7741.255 24.80188895093655 +7759.567 24.81214037516417 +7761.529 24.812850801857188 +7762.569 24.81321223195825 +7763.868 24.81366384774066 +7763.943 24.81368663066576 +7764.868 24.81385353792807 +7765.304 24.813932150924295 +7770.915 24.82051810904326 +7776.437 24.82677021416588 +7782.263 24.828081662425614 +7783.907 24.830101227775987 +7788.172 24.835456975474955 +7793.017 24.841437659742272 +7800.377 24.843138261111 +7803.771 24.84387406395131 +7812.582 24.845784246280726 +7814.525 24.847151837198357 +7822.787 24.852969946542014 +7834.117 24.855430153238558 +7869.953 24.863211615478406 +7883.745 24.866206423135843 +7888.033 24.867135685417004 +7898.141 24.869326213201035 +7898.266 24.86938455735631 +7907.054 24.87348638484862 +7907.411 24.873629710350727 +7908.498 24.874066488547083 +7917.768 24.879035238557865 +7919.028 24.880306873893204 +7923.965 24.883392548594493 +7926.164 24.889192479142785 +7930.503 24.901168244930222 +7930.728 24.901681914319173 +7940.905 24.924915751525116 +7942.742 24.92895097291178 +7950.565 24.930464456310524 +7959.123 24.932117160015686 +7964.866 24.93322623659652 +7965.449 24.933338937074232 +7976.854 24.935543652251518 +7993.719 24.938801448114948 +8003.892 24.978875384836268 +8004.982 24.98316925195544 +8016.76 24.98627371978641 +8018.444 24.98683128304139 +8036.161 24.991503683990672 +8039.771 24.992461126499588 +8039.85 24.992490725860385 +8049.28 25.00649807016953 +8051.386 25.00962632755183 +8057.271 25.01507762471847 +8060.404 25.018847439113195 +8064.92 25.026181060343287 +8068.578 25.03167346422304 +8075.747 25.040797129858365 +8079.183 25.04516997336833 +8090.658 25.061091004775335 +8110.152 25.0881198838115 +8119.125 25.090537846969962 +8132.131 25.094020407352097 +8157.578 25.099543428801706 +8159.9 25.100047396098667 +8202.089 25.109204104234703 +8209.648 25.110859995852827 +8219.377 25.113241123849335 +8220.285 25.11346335267253 +8223.457 25.11397135197697 +8223.857 25.11424874436063 +8230.671 25.11861312280457 +8234.687 25.121518714615533 +8242.506 25.123097408053972 +8243.422 25.123280500603148 +8262.987 25.127285992250343 +8282.923 25.13136743776419 +8298.254 25.134506113585452 +8301.22 25.13511333506389 +8317.269 25.14882758601866 +8317.937 25.1489385828984 +8323.34 25.149836361552953 +8337.234 25.152915197772316 +8344.975 25.155646305268704 +8354.12 25.158963380836372 +8356.25 25.15966016250132 +8357.602 25.160102438938413 +8363.915 25.162167595112503 +8375.153 25.16552037115628 +8380.072 25.173724053545598 +8388.48 25.176232519551654 +8391.987 25.177535136710805 +8403.802 25.181807288733914 +8423.4 25.1877278188519 +8425.347 25.188180737812235 +8442.387 25.193426346669263 +8492.429 25.209445318911968 +8494.043 25.20987940099117 +8503.003 25.224406217241516 +8507.657 25.23253168520389 +8511.269 25.23882249425363 +8516.329 25.246340699506305 +8516.645 25.24647476310592 +8519.535 25.247765929994692 +8522.885 25.249511157639763 +8526.382 25.251375665363646 +8527.559 25.251936996133686 +8535.926 25.253494324987194 +8537.73 25.253830099010347 +8537.904 25.253864984545505 +8547.113 25.25571131151832 +8555.389 25.25789294138682 +8560.377 25.258971661245052 +8566.521 25.266534040396476 +8590.455 25.295993347461934 +8598.89 25.306499009598433 +8610.125 25.322057111214765 +8617.94 25.324950191173514 +8641.112 25.333579592085595 +8646.439 25.334775006643724 +8659.873 25.339463880673538 +8681.29 25.34693906417037 +8693.112 25.351405170142638 +8697.102 25.352841879044004 +8702.629 25.354897547708656 +8708.778 25.35685980765251 +8709.621 25.358445497678055 +8711.376 25.36176008348383 +8713.102 25.365095030729734 +8715.46 25.370431141524406 +8719.212 25.37878187755503 +8725.659 25.38281482019201 +8728.025 25.384382139891038 +8729.966 25.387612843239037 +8740.72 25.405923526185266 +8741.301 25.406912786627124 +8745.084 25.413380919897946 +8750.899 25.417250119342235 +8751.474 25.417624234112377 +8752.762 25.418462251197504 +8755.467 25.42052305911818 +8760.497 25.424271800733774 +8769.468 25.430957677678798 +8778.455 25.43765547905043 +8790.075 25.564809748713632 +8793.459 25.60183987337286 +8795.607 25.60343918794951 +8806.463 25.613081211067435 +8808.463 25.61462426611001 +8814.447 25.619241086797405 +8815.278 25.619751645454095 +8816.993 25.6255046723113 +8819.872 25.63506403695426 +8823.467 25.63735114078283 +8823.656 25.63747239710496 +8827.523 25.639898052297706 +8838.053 25.646503211123555 +8840.713 25.648171750769976 +8855.759 25.657609663371474 +8861.316 25.66114497240496 +8863.473 25.66180511188854 +8873.146 25.664219048423153 +8880.891 25.670997776008452 +8884.151 25.67667972473234 +8887.862 25.683590057133138 +8889.817 25.688816204430015 +8898.413 25.712738670936478 +8905.335 25.72670473465569 +8907.354 25.730596500857175 +8914.177 25.742528977182232 +8927.002 25.756933703484734 +8959.914 25.779274785527647 +8963.427 25.78537629897552 +8975.765 25.815704778578432 +8977.852 25.81924547717755 +8979.204 25.82153816414987 +8981.081 25.824721132675798 +8990.553 25.83076188740282 +9000.025 25.836802642129847 +9009.84 25.84306214462623 +9014.046 25.846075193270742 +9029.05 25.93153554666262 +9032.124 25.93372873590966 +9044.054 25.94456801170456 +9047.477 25.947678057056272 +9052.165 25.9519374472429 +9054.177 25.953543900398497 +9059.058 25.957935667462937 +9065.491 25.96374771570098 +9065.927 25.965299415276576 +9069.907 25.968732352301956 +9073.501 25.971814985888866 +9075.227 25.975507417350588 +9082.924 26.00217387734972 +9091.946 26.019398806266114 +9092.582 26.020613066384804 +9095.067 26.02533496085467 +9096.698 26.028637353170918 +9100.617 26.034836215570422 +9108.977 26.048059611758177 +9113.945 26.05041669185094 +9121.056 26.05367910597025 +9121.073 26.053685446076763 +9127.145 26.055954814259092 +9129.15 26.05643931575476 +9132.999 26.05737581292668 +9146.525 26.06066681338066 +9161.49 26.119929626740053 +9166.679 26.1404744280741 +9173.416 26.14210824182496 +9180.313 26.143679097912756 +9180.773 26.143726551069204 +9187.275 26.171019299574734 +9200.412 26.173484360959087 +9201.474 26.1736836374446 +9201.907 26.17373539423343 +9212.804 26.175037920163703 +9217.582 26.175639873865485 +9226.379 26.178537106847205 +9228.628 26.179274166532498 +9239.614 26.183985477213902 +9242.324 26.184856482887096 +9243.78 26.185367836397415 +9245.381 26.187380796282802 +9252.854 26.19685175253933 +9260.109 26.205830225853155 +9263.384 26.206950018605603 +9266.394 26.2079792021735 +9273.914 26.210550451485986 +9290.825 26.216332685146043 +9295.9 26.218239152346186 +9302.898 26.220792103739655 +9305.435 26.224302942052745 +9314.502 26.23685034882642 +9329.208 26.242215174659027 +9334.889 26.244095972692485 +9335.753 26.244395446126724 +9336.317 26.24459093572962 +9342.341 26.246680389234708 +9348.066 26.249764995072034 +9355.491 26.252467913609237 +9358.82 26.25368243319805 +9361.036 26.25445283790737 +9369.302 26.255121622315425 +9369.574 26.25513026062383 +9376.734 26.255357651389307 +9377.568 26.255384137967294 +9380.328 26.25554093743469 +9387.269 26.256219884428123 +9394.469 26.256913994648713 +9415.619 26.258705379942118 +9417.151 26.258772318514715 +9433.92 26.261280273103704 +9436.09 26.261608583100468 +9442.047 26.262514116020277 +9450.539 26.2638049982689 +9463.665 26.265833583109917 +9476.507 26.267597881133504 +9501.704 26.27104151350899 +9516.924 26.295688692779517 +9522.587 26.30485932196539 +9535.994 26.326530493035126 +9539.777 26.32900626359448 +9540.247 26.329313534784028 +9545.816 26.332954371495926 +9556.021 26.334303500757514 +9557.341 26.334478008413097 +9569.096 26.338920998947465 +9578.149 26.34089571488714 +9585.492 26.34288322083019 +9606.741 26.350406401385015 +9618.784 26.356399328056963 +9620.067 26.35703453095275 +9623.117 26.359037417718486 +9626.873 26.360908958849908 +9633.586 26.363169146009174 +9634.714 26.363548930176556 +9636.039 26.364039975700493 +9638.863 26.365751035280667 +9642.488 26.368296177792526 +9659.199 26.38019419741782 +9701.69 26.425591089015484 +9708.867 26.43356324914927 +9711.14 26.436088081249604 +9723.752 26.449029037452092 +9737.934 26.462390298211403 +9746.19 26.47019619004394 +9756.951 26.478944717541655 +9766.962 26.49428807155706 +9773.279 26.503917353944054 +9778.338 26.51162901131239 +9782.147 26.514527886466734 +9782.232 26.514565623905668 +9787.014 26.51666709148013 +9802.186 26.523562863284905 +9810.116 26.534486462085436 +9815.501 26.54189584117357 +9821.777 26.550650151920962 +9823.359 26.552409498265135 +9826.53 26.55575806981838 +9830.924 26.5603981276566 +9834.779 26.56109537386416 +9839.19 26.564394167951754 +9847.456 26.57036372462521 +9853.27 26.575840519407834 +9854.77 26.577253521157743 +9855.28 26.577435109294655 +9865.458 26.5809104478952 +9865.626 26.580968192274938 +9870.828 26.58275428239547 +9880.1 26.586068601446875 +9896.665 26.593122177857172 +9897.204 26.59382060386441 +9901.75 26.598711926909615 +9907.096 26.604466118392693 +9909.756 26.60729974276718 +9916.888 26.614881142350256 +9917.589 26.615626313565592 +9918.346 26.615773276047726 +9946.952 26.620974184609228 +9951.39 26.62178106541032 +9954.054 26.622261285855526 +9961.991 26.623692032730006 +9974.07 26.62586942866006 +9974.426 26.625961151099162 +9980.159 26.62751594214141 +9980.729 26.62762641719335 +9982.773 26.628047512430143 +9996.7 26.63091636870852 +9997.64 26.631184332916366 +9998.352 26.63176766353878 +10006.854 26.638733221055233 +10007.921 26.639607397704268 +10015.356 26.64092477739196 +10016.068 26.641050933994197 +10018.564 26.641493190846987 +10021.583 26.64202811610282 +10024.016 26.64249381955752 +10028.998 26.6435792304115 +10030.484 26.645013981836872 +10030.927 26.645411421484717 +10031.37 26.645808861132565 +10035.901 26.65045259372976 +10035.977 26.65052632074095 +10047.786 26.662159521605368 +10050.572 26.664904046764846 +10056.345 26.66627894744437 +10059.671 26.671046612886464 +10067.895 26.682991335045827 +10068.475 26.68314047029004 +10072.856 26.68493877722656 +10077.909 26.687019014139132 +10116.444 26.70428021740294 +10116.76 26.704421165261724 +10123.346 26.7077291428952 +10125.261 26.7086732485667 +10132.221 26.711462352084382 +10132.738 26.712501421187884 +10160.032 26.76739087084022 +10162.917 26.77319273433575 +10165.678 26.778526899755846 +10166.689 26.780479901154408 +10169.144 26.785222352621744 +10174.752 26.787138160311297 +10177.77 26.788179690633545 +10197.587 26.795018658955616 +10200.91 26.79635427616406 +10202.642 26.79701756623941 +10206.095 26.798363638147524 +10212.368 26.800809021605257 +10212.529 26.800876270817213 +10215.23 26.801945356990487 +10222.416 26.805342474962224 +10224.253 26.806210900472124 +10229.797 26.80865794074664 +10232.303 26.809379760012543 +10236.138 26.81056639140524 +10238.392 26.811263827431087 +10244.481 26.81301768118609 +10246.512 26.81363562624107 +10248.023 26.814095357889553 +10253.65 26.815828896258033 +10256.868 26.816759333077997 +10281.575 26.824172459540378 +10286.766 26.825854102722577 +10292.844 26.827799883851256 +10312.149 26.833980091927803 +10331.454 26.840160300004342 +10338.156 26.842335482843254 +10341.989 26.843580056728708 +10345.481 26.844698465791318 +10349.983 26.84530946624457 +10352.524 26.845459143712038 +10363.059 26.846079707316846 +10372.465 26.84663376723775 +10372.712 26.846726392354004 +10377.854 26.84933607117693 +10382.454 26.852112168640375 +10382.595 26.852197241982694 +10384.069 26.853236075551084 +10389.712 26.855598517000928 +10408.728 26.86313738015186 +10409.904 26.863371470465154 +10412.137 26.863793070251113 +10420.831 26.866761156271114 +10426.752 26.867997199312704 +10433.915 26.869492517047355 +10448.937 26.869917773058138 +10468.95 26.870257078870175 +10471.05 26.870307477013377 +10471.531 26.870515430529913 +10476.002 26.872466842664995 +10479.361 26.87290745632022 +10487.168 26.87991735676479 +10490.927 26.88041286420178 +10493.604 26.880753193194536 +10496.99 26.88118929108117 +10507.525 26.882271719222196 +10512.908 26.882410296822425 +10518.06 26.888040821514785 +10528.595 26.89955432649034 +10530.762 26.901929167145465 +10538.909 26.902066669279755 +10541.993 26.902850161877417 +10552.594 26.905974925120884 +10593.789 26.918234100875274 +10595.324 26.918923078206387 +10607.419 26.924483618005326 +10651.817 26.944760555923203 +10660.685 26.949328264208262 +10667.521 26.953770422982974 +10676.698 26.959734217076523 +10684.84 26.964964441686455 +10689.368 26.96728942600187 +10694.055 26.975785048435334 +10708.605 27.016355764829147 +10709.894 27.019644251640152 +10710.938 27.02230474418173 +10715.83 27.028416026140718 +10742.362 27.035068790014584 +10757.773 27.03893301977714 +10773.786 27.04072335246217 +10778.501 27.041386019720825 +10812.723 27.04749047371846 +10823.342 27.04875125775213 +10848.396 27.052132173128378 +10855.335 27.05306855741016 +10860.12 27.053740145127716 +10862.448 27.054066886236697 +10873.23 27.055568977528406 +10878.301 27.058132314720712 +10909.152 27.07372717090686 +10919.597 27.087836935569033 +10926.185 27.091091334840012 +10929.182 27.092529196565962 +10941.557 27.098394855912318 +10956.353 27.10474847045559 +10957.705 27.105329038640402 +10971.399 27.113109240816478 +10984.111 27.12013379038422 +10989.833 27.123939616464952 +11002.568 27.132409940676443 +11006.088 27.13475116888409 +11013.196 27.13969047059098 +11028.2 27.266260002489034 +11042.926 27.276493001495194 +11043.204 27.276584385251766 +11047.997 27.27815993325631 +11050.04 27.278831505251574 +11051.109 27.279147854232235 +11056.849 27.280846491415602 +11058.208 27.281248660044906 +11060.88 27.282039384531654 +11083.804 27.288826732059743 +11093.795 27.31077585307834 +11094.66 27.312853145757995 +11099.657 27.315563179713926 +11105.158 27.318419511822654 +11105.519 27.318605649401757 +11115.265 27.322286456993268 +11124.566 27.32975994342189 +11128.803 27.334455832092356 +11132.407 27.340017536670516 +11138.671 27.348402515437993 +11142.191 27.3531143809012 +11142.729 27.353834546702103 +11145.571 27.35645562132663 +11150.87 27.359099008850915 +11163.444 27.36548073329812 +11186.016 27.37693677626156 +11195.168 27.38158172155668 +11202.081 27.38503024730784 +11208.592 27.388964102689272 +11212.622 27.39460054169387 +11227.897 27.41596446372741 +11239.466 27.422954292157417 +11242.392 27.424722140544166 +11247.202 27.42819347800847 +11249.43 27.429801407295468 +11251.828 27.43157514881476 +11260.813 27.437277647111078 +11274.217 27.44483542335966 +11277.932 27.44553394445552 +11283.764 27.44663051916104 +11284.511 27.44677097548906 +11301.973 27.44973988966316 +11311.139 27.451298306071344 +11330.668 27.45464049922585 +11342.197 27.456605398697732 +11347.177 27.46050515941112 +11376.825 27.462554844650747 +11378.686 27.462685443261908 +11382.318 27.463079675412846 +11391.455 27.470147266297758 +11392.221 27.47094406168744 +11397.137 27.47748448209288 +11399.951 27.4794469219443 +11402.561 27.481218504681042 +11412.194 27.48553665316835 +11413.772 27.486260327982563 +11417.671 27.48715088759534 +11420.641 27.48767872466425 +11424.079 27.488084379423363 +11424.644 27.48812293789878 +11435.964 27.49169638748806 +11436.797 27.491959345395113 +11447.849 27.4930231052369 +11451.964 27.493556950039068 +11474.245 27.49644749585608 +11500.923 27.501713684119423 +11549.927 27.511188883238244 +11552.277 27.51348703752852 +11565.909 27.528221728972063 +11566.159 27.528286402662886 +11583.948 27.532888323806773 +11588.322 27.534028620062056 +11588.837 27.534219621603928 +11590.613 27.534884587957272 +11596.937 27.537252407337096 +11600.894 27.53860149507652 +11606.183 27.540404710910177 +11609.865 27.54155692527797 +11619.752 27.544795022407857 +11619.992 27.54487012600597 +11629.639 27.547359707996456 +11639.526 27.549911226306804 +11651.653 27.55304081693587 +11662.403 27.557108076848767 +11666.448 27.558586713150103 +11677.253 27.561345971167597 +11680.593 27.56221839103358 +11692.321 27.565442665918983 +11700.502 27.567726966307912 +11700.587 27.567749534031062 +11702.833 27.568336197210403 +11704.814 27.569016985575576 +11708.853 27.57040502404449 +11713.363 27.574627957485113 +11713.748 27.57491912145419 +11716.494 27.577015751298863 +11721.701 27.57790527088596 +11722.377 27.57802075297563 +11723.893 27.578097386371873 +11734.423 27.578629675067457 +11743.275 27.579077141309938 +11753.531 27.582679478293166 +11762.409 27.58844352121379 +11770.442 27.593713914601427 +11784.187 27.61466117745688 +11785.38 27.616471136030896 +11789.623 27.623542542173553 +11789.747 27.623753075481623 +11795.57 27.62682995512235 +11797.766 27.62890250477429 +11800.153 27.63109839660827 +11809.052 27.639006883936865 +11815.248 27.645257897395968 +11826.596 27.651992889759303 +11842.727 27.661563253171973 +11849.561 27.665568616898938 +11861.1 27.676536773814412 +11869.51 27.68853065215653 +11871.448 27.69058864355183 +11879.752 27.699406786248723 +11889.075 27.7092521101233 +11891.288 27.711589094112835 +11898.182 27.719090994290976 +11908.64 27.733170555219132 +11933.384 27.766538306010037 +11935.723 27.769619399694005 +11938.765 27.772484441253486 +11940.699 27.774842570748486 +11951.528 27.78642792533516 +11958.181 27.790899984825142 +11964.291 27.79440721863128 +11984.552 27.80610300637098 +11991.15 27.817452127290153 +11997.226 27.8278917682909 +11997.435 27.828125668301897 +12013.291 27.84596845914955 +12060.102 27.895546939349927 +12065.981 27.898953869368604 +12088.946 27.89942921398709 +12089.046 27.89950379297177 +12095.228 27.904439722678873 +12107.921 27.91457426744952 +12110.727 27.916805584319704 +12128.5 27.936404182109253 +12128.71 27.936572484407286 +12138.694 27.94459378942989 +12140.748 27.9447546685204 +12151.448 27.964673407231782 +12160.935 28.003106979876 +12165.924 28.0230556812814 +12172.984 28.023230596559333 +12188.442 28.023613576781187 +12211.835 28.024193150874208 +12218.901 28.024485119701986 +12232.18 28.02496396385505 +12238.19 28.024978612667105 +12241.342 28.024986295371864 +12244.282 28.025041014432883 +12250.504 28.02515676823378 +12250.905 28.02516422841928 +12259.666 28.02566111612697 +12261.52 28.025766267343734 +12282.935 28.02714715429844 +12295.612 28.027889654029163 +12305.864 28.03141210899294 +12317.68 28.032104179421125 +12329.552 28.035032100336473 +12337.87 28.03551929074115 +12345.144 28.035960686446483 +12347.978 28.036132657223067 +12357.343 28.03670093750632 +12357.694 28.036946721754063 +12364.877 28.041976545832508 +12392.708 28.045032545553926 +12398.725 28.046235917186763 +12407.038 28.047978659886063 +12409.331 28.048459961126714 +12410.191 28.049127967434263 +12414.604 28.05251320691305 +12418.166 28.05315925454914 +12419.29 28.053419921257348 +12456.925 28.062210932486913 +12468.23 28.064832673711397 +12471.067 28.06549060204876 +12488.414 28.069502306957578 +12526.152 28.078233340871193 +12529.149 28.078779498863664 +12572.904 28.083162840043386 +12580.165 28.083736267018217 +12581.571 28.091760646148813 +12591.458 28.147787560108952 +12601.345 28.203636020766893 +12602.865 28.212222008447693 +12611.232 28.213140796949897 +12612.584 28.213289261400107 +12651.093 28.22473534520977 +12659.199 28.22714391630692 +12665.291 28.232471898078185 +12680.596 28.23701953941077 +12686.712 28.239851889338937 +12688.248 28.240563218555693 +12698.337 28.245235484485274 +12707.239 28.249358044828725 +12718.095 28.254385512261724 +12732.709 28.261153328129986 +12742.115 28.266221255559856 +12750.037 28.270761026072222 +12762.585 28.276829960778795 +12767.538 28.278297223234077 +12793.957 28.28618722270356 +12813.772 28.292104946292188 +12816.755 28.293310004400926 +12816.818 28.293335321868046 +12816.931 28.29336830779755 +12826.254 28.29608979293677 +12836.038 28.29894584899192 +12837.785 28.299751766320224 +12846.792 28.308324888842968 +12849.88 28.310741016393948 +12853.43 28.31290058116427 +12857.546 28.31497093556392 +12858.842 28.315622825578973 +12868.3 28.31574093434301 +12871.301 28.315851288538568 +12892.768 28.322348546031133 +12901.821 28.325808363540702 +12910.379 28.328401002355534 +12913.629 28.329384655723533 +12921.352 28.33170349431264 +12924.638 28.33287274492539 +12967.31 28.348572194135656 +12973.634 28.351303505514977 +12979.195 28.353638092606403 +12990.119 28.357525157029293 +12991.08 28.357867107680192 +13002.965 28.362096122753986 +13036.148 28.374367948396973 +13041.018 28.374874211161444 +13048.476 28.375805965116424 +13057.964 28.376760920211066 +13069.612 28.37728636826256 +13071.068 28.37735620101286 +13082.694 28.37780132804154 +13083.008 28.3778067631016 +13092.158 28.377939050471458 +13099.463 28.37804466350281 +13129.316 28.39333229486217 +13133.292 28.395368392483345 +13148.772 28.39559332367727 +13160.846 28.395767885174937 +13162.994 28.395848097759973 +13177.746 28.396456508575664 +13179.473 28.39672759325821 +13184.942 28.397586054247707 +13190.253 28.398419714206614 +13194.939 28.39935887827169 +13205.909 28.406651429331358 +13206.311 28.40673430472358 +13212.6 28.408054403845853 +13238.149 28.41341729341097 +13245.504 28.41720215939598 +13300.399 28.4452369263593 +13303.152 28.44657987478842 +13315.208 28.452466254845774 +13317.458 28.45357964486035 +13328.014 28.457420183208903 +13331.496 28.458687022402696 +13340.268 28.46182815804698 +13344.553 28.4633952288591 +13351.671 28.466007570306083 +13353.027 28.467261755053737 +13359.316 28.472740808015487 +13359.991 28.47401000583054 +13373.148 28.498648709891693 +13377.879 28.50465378838708 +13378.897 28.50622479975874 +13379.506 28.507164628762016 +13395.686 28.532197725241296 +13398.362 28.535604981024917 +13401.303 28.54030386028543 +13408.719 28.552152287494366 +13409.064 28.552508321466348 +13410.524 28.552541757770882 +13410.993 28.552623489112477 +13418.473 28.553927008163797 +13420.055 28.5539632384609 +13421.011 28.5539851323699 +13430.747 28.5549028648485 +13432.537 28.55566746404506 +13440.168 28.55848665090646 +13441.805 28.55907001332199 +13458.812 28.55946920227855 +13474.806 28.55984461406024 +13490.067 28.5600955774796 +13494.102 28.560166843512224 +13508.56 28.56173224941133 +13514.638 28.562390330546677 +13518.788 28.562839662022768 +13520.484 28.59989671545352 +13524.609 28.690024888511328 +13535.331 28.691181245372036 +13551.879 28.693042001591802 +13557.161 28.693652977195047 +13565.096 28.698879858576245 +13590.946 28.715998076121878 +13595.043 28.718544341675152 +13607.318 28.71997724739652 +13614.307 28.730861109320585 +13615.46 28.732656658440412 +13620.479 28.733000361781453 +13621.538 28.733072882570077 +13634.934 28.733869198778482 +13638.197 28.734088037835452 +13641.624 28.734309976718162 +13648.551 28.73501302520031 +13654.037 28.73556982092328 +13655.008 28.73563275072018 +13659.684 28.735798273742716 +13667.95 28.737224180389276 +13676.216 28.737516783747758 +13677.31 28.73774961566194 +13681.351 28.73860964652592 +13685.366 28.739464143907476 +13685.621 28.739434295244198 +13690.147 28.739713528504222 +13702.626 28.740483486229053 +13705.408 28.740811451809535 +13747.095 28.745427593947152 +13772.088 28.75077975225213 +13800.44 28.756105656797338 +13800.753 28.756191500384336 +13809.303 28.758669846288072 +13811.72 28.759134320264366 +13816.471 28.759973120883267 +13816.557 28.759999991539797 +13822.133 28.765064661543608 +13830.458 28.772624878461134 +13838.035 28.77950581102379 +13839.666 28.780015148829122 +13850.621 28.78343623752161 +13852.337 28.783972075244264 +13859.513 28.78624886724886 +13860.582 28.786588221100928 +13870.723 28.789805744473092 +13896.374 28.79794492367069 +13896.375 28.79794513796783 +13900.033 28.798294750341654 +13908.259 28.799080948096464 +13920.144 28.79973002252153 +13932.029 28.8003790969466 +13939.939 28.800817067950724 +13951.55 28.80145996065982 +13953.999 28.801595560026335 +13966.365 28.802713248541767 +13970.766 28.80311087633477 +13972.821 28.803442675536775 +13977.649 28.804467548320854 +13983.422 28.805289389871096 +13987.402 28.807705668200963 +13987.635 28.807871961214158 +13996.022 28.809531781827573 +14018.244 28.85833649378898 +14018.996 28.859986249510833 +14020.026 28.860187608402548 +14031.813 28.864123689032073 +14037.43 28.865405746977096 +14050.069 28.867870190103005 +14058.839 28.86945474490534 +14059.086 28.869499372617568 +14064.154 28.870414990205276 +14069.854 28.872778994619857 +14084.72 28.878944511379196 +14089.402 28.879794760956827 +14099.434 28.882125735472883 +14106.204 28.88374461619979 +14127.542 28.888199897218 +14132.204 28.889168960415873 +14135.321 28.889996551362472 +14138.913 28.89095025238296 +14139.725 28.891165844039037 +14140.21 28.891291330622387 +14152.145 28.89289989375855 +14158.534 28.895289345367328 +14165.891 28.89595142500047 +14181.109 28.897315517940083 +14189.04 28.9026974472968 +14192.351 28.904872792482504 +14214.318 28.92639031030031 +14224.076 28.92705432519214 +14252.018 28.928960994127333 +14262.47 28.92914372018174 +14263.281 28.92920054287258 +14263.504 28.92930127294848 +14274.675 28.935077695050527 +14276.239 28.9358041860319 +14285.002 28.940473656777826 +14286.52 28.94070321285565 +14286.88 28.940876403899765 +14296.876 28.94602062906445 +14306.723 28.95691545579315 +14308.686 28.959087340110038 +14318.834 28.970315865413642 +14340.302 28.99546843135358 +14345.181 29.001183897850872 +14346.624 29.0337645300971 +14352.746 29.165499745270242 +14396.372 29.17048941730512 +14416.766 29.172821956879673 +14424.027 29.17365242514734 +14425.007 29.173764511485622 +14440.028 29.17566509723795 +14444.211 29.17605405952763 +14446.12 29.176231570646685 +14446.734 29.176296841593608 +14448.88 29.176524970994407 +14452.777 29.176939360057816 +14456.528 29.17733822415246 +14459.793 29.177685409241505 +14468.972 29.17895616133639 +14471.968 29.179361738246186 +14482.558 29.204286914060145 +14483.908 29.20746430265102 +14491.277 29.225986482747732 +14491.403 29.226019638615938 +14492.879 29.22640803592919 +14500.647 29.226605946659465 +14501.865 29.226966527209925 +14503.615 29.22746760784304 +14511.503 29.23004111044468 +14513.065 29.23012809814714 +14523.365 29.23041607002112 +14531.133 29.231291510750843 +14572.754 29.23237111705896 +14575.431 29.232441880944503 +14585.198 29.23269592131167 +14589.231 29.232800819929544 +14596.959 29.23299890709893 +14599.985 29.24027458139129 +14610.739 29.265992195849986 +14618.038 29.283447363037446 +14619.729 29.283468825277485 +14621.493 29.28349121403646 +14621.79 29.283750009825937 +14627.796 29.293220663732786 +14632.652 29.300877922369427 +14642.384 29.31648529606198 +14643.214 29.31731952117165 +14644.446 29.317499905978448 +14656.935 29.31920740654533 +14664.027 29.320680883457253 +14664.935 29.32086995478881 +14674.371 29.32390968383228 +14681.496 29.325393310745653 +14684.163 29.325669079539086 +14688.639 29.326131899606352 +14689.767 29.326275682926045 +14696.362 29.326970028617502 +14701.424 29.32862510868035 +14737.25 29.340359728210192 +14739.403 29.34106052989535 +14749.02 29.345294485643407 +14749.526 29.345548318423386 +14792.264 29.421234497174858 +14795.651 29.428689043709987 +14799.274 29.43644059940485 +14801.749 29.43830577641772 +14815.682 29.442814661082544 +14826.699 29.448541980362922 +14849.022 29.460097811247433 +14870.997 29.47147349478849 +14879.539 29.475914155702803 +14898.77 29.481688483476123 +14898.901 29.481723774855247 +14900.906 29.482325799044606 +14905.929 29.487587783901574 +14915.295 29.499848751920087 +14917.555 29.502807302819274 +14929.181 29.51497966684016 +14937.876 29.524083288478 +14940.807 29.524961645698326 +14941.25 29.5253901066206 +14946.856 29.529139119376296 +14949.484 29.530896594496156 +14955.506 29.532701257471526 +14959.593 29.533990683318578 +14963.262 29.535192448872312 +14970.618 29.53748983071842 +14981.757 29.540834456511234 +14993.821 29.549811350148033 +14996.859 29.550723548115414 +15016.85 29.55138258936692 +15043.663 29.557087232489696 +15066.22 29.56183952107329 +15099.959 29.568947623414992 +15109.956 29.577346505116378 +15172.784 29.590583051959033 +15188.704 29.59132038275916 +15192.349 29.59149149734141 +15194.173 29.591548989192106 +15198.73 29.591689752133398 +15207.656 29.59194318960077 +15208.009 29.592015727170885 +15211.677 29.592119873331576 +15211.914 29.592139647007393 +15212.212 29.59216520149678 +15219.943 29.59282816041447 +15222.3 29.592900551573937 +15228.209 29.593277154790826 +15234.874 29.593710700625593 +15239.433 29.593907444726458 +15239.818 29.593924059439953 +15251.748 29.594112655121705 +15254.174 29.5941506543617 +15270.857 29.594326831577202 +15285.75 29.5945621627864 +15291.533 29.594653542654978 +15292.165 29.594663159890175 +15300.406 29.59478976090865 +15300.82 29.59480330195514 +15308.349 29.59506166079256 +15310.392 29.595277070326524 +15321.655 29.59640558545001 +15321.898 29.596429933241453 +15330.82 29.597165006927437 +15332.582 29.597374609243257 +15343.39 29.598660297001135 +15355.728 29.60012798904006 +15369.844 29.60203011689424 +15372.999 29.602455252441125 +15373.228 29.602492198079617 +15381.232 29.62056671268698 +15383.856 29.626495374296592 +15391.213 29.628864879707933 +15411.594 29.63223165267852 +15415.595 29.632811893052683 +15432.613 29.635177384014096 +15443.599 29.636633933939706 +15455.638 29.638230093101786 +15472.795 29.64057055742641 +15478.045 29.642228494274352 +15483.696 29.643602068623448 +15492.758 29.64385069848459 +15503.293 29.644217135833244 +15513.828 29.644502806863343 +15521.771 29.644718192244657 +15523.2 29.644755257177046 +15524.363 29.644764357479737 +15528.402 29.645560169077594 +15529.269 29.64575287912959 +15539.265 29.647936406270926 +15543.961 29.651541985624256 +15545.03 29.654856845988483 +15560.757 29.70471784345024 +15562.053 29.70808201203839 +15563.947 29.712642403126594 +15582.249 29.714089765426323 +15601.389 29.71560339860394 +15602.9 29.715722839607174 +15619.804 29.71705906112841 +15620.541 29.71712920233674 +15624.814 29.717535869071057 +15638.293 29.720713324557632 +15641.017 29.721311542679004 +15641.795 29.721479029605714 +15647.741 29.72278483171648 +15649.133 29.723090529082462 +15653.244 29.72399334651895 +15660.076 29.725493723246277 +15665.824 29.745731343196894 +15668.224 29.755476444350204 +15678.279 29.79154228465738 +15686.786 29.822045400571874 +15697.86 29.860508101279013 +15702.097 29.875349945685944 +15716.923 29.883520867586256 +15720.633 29.884269222618475 +15759.68 29.88946031913588 +15794.505 29.889195032710184 +15803.955 29.88912304543889 +15815.285 29.889036736890336 +15816.821 29.889025036102126 +15817.437 29.889020343598506 +15821.74 29.888960297946205 +15826.599 29.888893207192048 +15835.761 29.88882475922709 +15843.959 29.88876351316546 +15844.923 29.888806589025567 +15846.984 29.888898683784575 +15847.188 29.888907799423023 +15848.304 29.88891525814948 +15850.765 29.888931706111673 +15868.351 29.888948029114985 +15886.882 29.89404606342236 +15888.231 29.894454365237557 +15890.635 29.895536544613055 +15891.405 29.895697213109955 +15893.334 29.89610912658433 +15896.289 29.900586380508848 +15901.256 29.907454186453194 +15910.731 29.908221019385433 +15912.563 29.908369521407128 +15931.439 29.91206898971329 +15969.749 29.91940881217743 +15976.851 29.920766082579064 +15986.637 29.922874364346765 +15990.349 29.923674072288893 +15993.225 29.924293305983092 +16006.307 29.92709138483414 +16014.611 29.928867508269313 +16022.265 29.930515496689154 +16025.512 29.931214610668675 +16032.087 29.93263027879783 +16033.235 29.93286020155867 +16037.384 29.933691168052334 +16045.13 29.935280157866234 +16055.257 29.939327793484917 +16065.787 29.944140563811338 +16076.317 29.948058624694415 +16086.847 29.95197668557749 +16096.04 29.955397268074933 +16118.3 29.96368372010763 +16154.249 29.97689144861925 +16156.808 29.978598309432364 +16157.412 29.978990020048894 +16165.829 29.984448715755807 +16170.103 29.987221191168 +16171.811 29.98782702553858 +16174.229 29.98868757965162 +16176.181 29.989157947468655 +16186.615 29.994333412126537 +16195.543 29.996769760100353 +16202.207 29.99858828865072 +16203.812 29.998989231261866 +16206.948 29.999923026896276 +16209.901 30.00077274749389 +16210.384 30.00088848314287 +16215.99 30.00095375867697 +16216.101 30.000956362057998 +16220.813 30.00255153074946 +16229.469 30.002671209095737 +16231.884 30.00270459902253 +16241.169 30.002832973958434 +16256.009 30.003038152638982 +16301.729 30.00367027994859 +16316.961 30.004082085616908 +16326.188 30.004330142286594 +16337.039 30.00467724041203 +16344.8 30.004908560708387 +16353.771 30.006875156867707 +16362.772 30.008027653609968 +16366.222 30.00854903771274 +16370.015 30.009111872620736 +16410.993 30.017390315009827 +16423.589 30.019934979472062 +16432.361 30.021707113217897 +16446.114 30.025614315391536 +16453.265 30.027650098634737 +16454.15 30.02790204495976 +16477.604 30.034579049600538 +16489.489 30.03791329148573 +16501.333 30.041059337404633 +16501.374 30.0410743665964 +16506.874 30.043090477686505 +16508.397 30.043492375799012 +16509.92 30.043894273911526 +16512.638 30.04462944828459 +16513.259 30.044727435083516 +16519.812 30.045761424605832 +16531.374 30.04757893719422 +16536.053 30.048765593761654 +16541.579 30.05014725532506 +16553.192 30.053133149499004 +16557.502 30.056656847284486 +16568.161 30.06537406965856 +16569.491 30.066461248120284 +16572.87 30.069223335354998 +16584.742 30.07335554493978 +16603.004 30.078212998321803 +16614.247 30.081145429445403 +16646.256 30.08587346369613 +16655.398 30.087191307151574 +16656.221 30.087300653007446 +16692.29 30.092125610928335 +16694.779 30.09271654635092 +16699.769 30.09334222407878 +16706.703 30.09354310280317 +16732.459 30.09429275652248 +16733.206 30.094318356274755 +16737.683 30.095212481614404 +16742.025 30.098462815616497 +16752.559 30.10562291298409 +16753.831 30.107072671200854 +16755.615 30.109142131160826 +16757.358 30.11032615820472 +16761.948 30.113476350179244 +16769.903 30.133168183806976 +16772.31 30.13512208517702 +16788.063 30.14790970806123 +16805.564 30.159566287119148 +16813.555 30.164888710023654 +16824.277 30.172030121409232 +16835.814 30.179714365314794 +16841.903 30.183354945721963 +16845.264 30.185364469576207 +16847.992 30.196457985891627 +16856.164 30.229745102987142 +16858.874 30.231383758120508 +16861.914 30.233201357798254 +16867.588 30.236616578953356 +16869.756 30.237921513649212 +16885.803 30.24758031764567 +16893.576 30.252258941903435 +16897.867 30.25286035167619 +16899.727 30.253121051725998 +16903.136 30.253551028205145 +16903.782 30.253631982292948 +16909.458 30.26334721418632 +16912.556 30.270606368643396 +16922.054 30.29286183960315 +16924.073 30.296327723293317 +16924.492 30.297044966345723 +16926.29 30.30012277782119 +16926.527 30.300528473772065 +16931.078 30.301084974674932 +16931.514 30.301503991737263 +16933.729 30.30168931064647 +16934.103 30.301723361101104 +16935.884 30.301877003513784 +16936.757 30.301952310473755 +16938.284 30.302092132486816 +16939.856 30.302228141047483 +16943.678 30.30255881834957 +16944.502 30.30281700305134 +16947.621 30.303597674832947 +16959.805 30.30664427960662 +16964.208 30.312104870499653 +16971.409 30.321037328034542 +16973.901 30.321662857141177 +17011.918 30.331205690225758 +17025.418 30.334594391244835 +17065.577 30.344978328220414 +17079.21 30.367936560168435 +17084.381 30.37716252149636 +17085.659 30.377760619666372 +17122.29 30.38743648363751 +17129.156 30.389364546677243 +17140.706 30.391345865720293 +17143.742 30.39186666958304 +17163.435 30.396038996900725 +17170.309 30.397495391039488 +17182.618 30.400007229913278 +17206.324 30.40485443881458 +17210.312 30.40775992682449 +17211.809 30.408066021135014 +17224.461 30.413485183278244 +17230.545 30.41593360296558 +17250.778 30.424076087438575 +17259.679 30.428646784009874 +17262.662 30.429509600046217 +17281.022 30.434444462368763 +17291.676 30.437308080189254 +17294.423 30.437999679772183 +17306.009 30.441063440743505 +17306.991 30.441284961011352 +17340.792 30.451686899957085 +17351.936 30.454985450771478 +17356.928 30.456456178759463 +17366.903 30.45940399022392 +17368.771 30.45989263494983 +17373.505 30.461185478473226 +17381.387 30.463098902604266 +17394.618 30.46629861858907 +17400.137 30.466899895094187 +17421.982 30.469279834440847 +17428.932 30.470037013587532 +17431.125 30.47033901603527 +17437.162 30.47117583233195 +17462.577 30.475635348951528 +17466.801 30.476681840786934 +17484.14 30.480338561488313 +17485.012 30.480521583738646 +17497.57 30.48304679326115 +17507.477 30.48503892980673 +17517.202 30.49031692098834 +17532.286 30.492738310318487 +17540.977 30.49352118509428 +17572.227 30.496336147324573 +17613.709 30.500110490463012 +17635.097 30.502187652450043 +17636.851 30.50237876855378 +17637.349 30.50243395652323 +17643.916 30.50336114867541 +17646.672 30.50375026723357 +17649.257 30.504148103311277 +17658.336 30.505545377489064 +17668.527 30.507538493704956 +17676.158 30.50903093505944 +17698.016 30.51488489310914 +17701.092 30.515486485247315 +17702.543 30.515979737064203 +17707.07 30.517518641940185 +17708.66 30.518097437518154 +17716.092 30.521248394945466 +17728.488 30.526216605546633 +17752.578 30.532393963885795 +17759.023 30.53403511694198 +17767.149 30.53609698228659 +17775.275 30.538158847631205 +17780.142 30.539390161217607 +17781.235 30.53989960122827 +17786.499 30.542754718494987 +17790.477 30.545317204112646 +17791.468 30.545714290774885 +17800.812 30.54880322783068 +17827.304 30.557586857744077 +17843.243 30.562773070747223 +17848.292 30.564165286843306 +17863.815 30.568445613731708 +17874.155 30.57156965408397 +17874.629 30.571739998602563 +17876.905 30.572270405839806 +17883.876 30.573468091306793 +17884.577 30.573588529911344 +17885.167 30.573698096264113 +17889.249 30.574457314289905 +17895.107 30.57568202993521 +17899.784 30.576594845741297 +17905.637 30.57760212188124 +17910.319 30.57840787395493 +17914.157 30.57906837725667 +17916.167 30.579249145475348 +17917.322 30.579353019750265 +17920.854 30.579667510682796 +17927.397 30.58025010246409 +17930.968 30.580570950987042 +17932.225 30.580683890385913 +17946.539 30.58706422845374 +17957.739 30.5880742591788 +17973.134 30.589462600519173 +17983.658 30.590480857105167 +17984.904 30.590629054432416 +17989.498 30.591141543694917 +17992.322 30.591456578452703 +17998.156 30.59694660080972 +18004.003 30.602560369603697 +18014.136 30.61213828579799 +18015.391 30.612283536066556 +18028.15 30.61366718880451 +18032.345 30.614122116560264 +18055.135 30.614681645338894 +18075.889 30.615249776731517 +18087.928 30.62302593886356 +18099.377 30.62384925269628 +18108.698 30.624097699532392 +18118.456 30.624357794396342 +18127.07 30.62615317530156 +18135.957 30.628002269581618 +18159.591 30.62863235008023 +18168.259 30.62888850831888 +18172.436 30.6310693322212 +18176.374 30.633125373525317 +18176.872 30.6333851995108 +18178.256 30.63410728618531 +18179.538 30.63412187747894 +18181.161 30.634140349920088 +18184.892 30.63417202390431 +18185.249 30.634175063782507 +18186.783 30.634190489037103 +18192.212 30.63425139034525 +18213.225 30.64481608660202 +18216.791 30.644856089192704 +18216.96 30.644857984996925 +18227.955 30.64495532634259 +18241.259 30.645279746188276 +18251.279 30.64551140689219 +18257.208 30.64572249021819 +18263.872 30.646318212014098 +18272.374 30.646930583815738 +18280.876 30.647542955617375 +18352.069 30.652752791001312 +18379.204 30.65473872312909 +18382.611 30.654988071600048 +18391.773 30.658557056961644 +18400.59 30.659202347677347 +18409.454 30.660068830111566 +18419.895 30.66609668123595 +18427.046 30.670049462279458 +18439.2 30.67055513129668 +18450.548 30.671980016464058 +18461.207 30.681699254315422 +18466.396 30.68402558972481 +18471.742 30.686422311462835 +18473.09 30.686478395207715 +18478.734 30.686713214685515 +18482.277 30.686860621738997 +18487.537 30.687079464838444 +18492.812 30.687298889464948 +18497.814 30.688474747491536 +18503.242 30.68975074856476 +18503.87 30.68989837728142 +18509.49 30.6901452614473 +18515.063 30.69039008092354 +18521.323 30.690796986858647 +18542.148 30.69215063160283 +18545.89 30.69231872672323 +18578.61 30.69387977357018 +18585.631 30.69387782349326 +18587.772 30.693939733682594 +18596.432 30.69458157329894 +18596.934 30.69490063080976 +18606.096 30.700723748168635 +18618.89 30.708859681070333 +18624.658 30.709162217024186 +18625.437 30.709202271142697 +18648.009 30.710362863649962 +18650.552 30.710494707114847 +18665.668 30.713425041513347 +18665.779 30.713446587834117 +18669.015 30.714070146492215 +18672.49 30.7146454235835 +18675.77 30.715544058296764 +18678.523 30.716304980260045 +18680.189 30.716878559794093 +18689.505 30.720060583888102 +18693.804 30.72199348855546 +18700.801 30.72446873968476 +18718.05 30.72832840626255 +18738.522 30.731940287243308 +18742.079 30.73819203252962 +18755.105 30.76109806501409 +18765.412 30.76292082554295 +18768.775 30.76351268811367 +18778.046 30.765141114461876 +18781.358 30.76574245186723 +18791.075 30.767614755857803 +18816.217 30.772722461289206 +18820.248 30.773497737027228 +18838.925 30.774429518984658 +18846.421 30.781053051503893 +18850.907 30.785015601371057 +18852.571 30.78506971908302 +18855.295 30.785225126610143 +18870.059 30.78607027965457 +18875.044 30.786355641882047 +18901.049 30.7868189174612 +18915.881 30.78708028561473 +18931.454 30.787711296490176 +18946.803 30.788422283177088 +18948.7 30.78851015481336 +18958.547 30.788952224400557 +18971.323 30.789400318000574 +18982.554 30.789864403871036 +18989.944 30.79014710777344 +18992.557 30.79024706789481 +19013.514 30.791048776376915 +19058.608 30.795285164871366 +19060.433 30.795648554931308 +19068.58 30.79875557787023 +19068.835 30.798804873454703 +19075.168 30.800032918486725 +19096.725 30.8042172561806 +19111.663 30.805203701934893 +19112.112 30.805233265127697 +19128.489 30.80663585114051 +19137.148 30.80738517240881 +19138.671 30.8075171215082 +19147.612 30.80829084612535 +19148.201 30.808327510527484 +19153.699 30.810031353779678 +19156.774 30.810984303579694 +19159.64 30.81194209358571 +19160.231 30.812139600178018 +19163.354 30.813118780972964 +19165.472 30.813651817167813 +19165.936 30.81379716672371 +19168.641 30.814644517044194 +19175.098 30.81505506651211 +19177.511 30.8152084996333 +19179.94 30.81521336317399 +19194 30.815241459479903 +19197.651 30.815559446052298 +19208.35 30.81649128344975 +19214.568 30.817035656605285 +19235.286 30.819018363405462 +19243.962 30.820193010656908 +19252.276 30.82098865812948 +19262.357 30.824387470161767 +19264.678 30.8246110202535 +19265.629 30.824702549838758 +19274.092 30.825517076526523 +19275.547 30.82565581451587 +19280.918 30.84608356133002 +19282.153 30.850780687994604 +19291.341 30.85165678740773 +19296.207 30.852112738445783 +19304.155 30.853224043919607 +19313.131 30.854479086437607 +19315.123 30.854757611916202 +19320.629 30.855527471999096 +19326.294 30.85605829045996 +19328.913 30.85630369444037 +19329.013 30.856313113069064 +19333.498 30.856735538566202 +19334.032 30.856785834043453 +19338.845 30.857499632958252 +19339.036 30.857517622539067 +19345.051 30.85807234942854 +19351.537 30.858708091927515 +19363.334 30.859864406182894 +19374.641 30.8655015455658 +19382.364 30.866280032419336 +19386.894 30.86673446486366 +19396.705 30.86771866722819 +19417.784 31.027905159940627 +19421.987 31.028496113895137 +19425.913 31.029110008066375 +19432.642 31.02989110796888 +19443.609 31.03099127587549 +19475.621 31.034202598482082 +19486.833 31.034373231450566 +19492.17 31.034423532937947 +19511.412 31.047321936347846 +19513.948 31.04902188183415 +19517.24 31.04905936920227 +19517.501 31.04906234131742 +19523.59 31.049131679283544 +19530.192 31.04939001208743 +19534.756 31.049602625788264 +19543.392 31.050009097621754 +19570.94 31.062264688675285 +19587.999 31.07008657995363 +19590.871 31.07134409457489 +19601.648 31.112918117171255 +19608.387 31.115868810427756 +19613.63 31.118144982549275 +19628.249 31.124563803390856 +19631.033 31.125791606419778 +19643.137 31.131129727059893 +19654.603 31.13618647617254 +19655.702 31.13667115847455 +19673.482 31.14447041549924 +19682.018 31.14797795447413 +19694.116 31.1529491595489 +19703.963 31.157365924866895 +19710.103 31.159911772848474 +19713.088 31.161125119982962 +19713.704 31.16113045901339 +19716.39 31.16115874175034 +19732.083 31.161452588213237 +19745.561 31.16170486615998 +19748.441 31.16174275093388 +19760.859 31.161863081052545 +19771.332 31.161951731369033 +19771.741 31.161969837918278 +19782.623 31.162375743222373 +19812.169 31.16452731316586 +19821.247 31.16482174382959 +19830.951 31.165142332919384 +19833.551 31.1652275592292 +19855.535 31.165940343879882 +19856.34 31.16596644430036 +19863.905 31.166207158915103 +19875.253 31.166628375962812 +19880.526 31.166796160254094 +19882.784 31.16686800871412 +19886.088 31.16697314038459 +19889.501 31.167100728003177 +19889.895 31.167258735073688 +19892.344 31.168623610827353 +19912.334 31.179771353251276 +19913.461 31.180224620779768 +19915.265 31.180950170576914 +19925.097 31.181329087285228 +19941.029 31.18141272485119 +19948.77 31.18274792959341 +19959.44 31.184677004198914 +19971.519 31.184740414829044 +19975.823 31.201890044615457 +19978.487 31.212856728769307 +19981.844 31.226669980613547 +19982.463 31.22921680313922 +19988.552 31.230039333677137 +19994.844 31.238502308042435 +19995.971 31.24001725219621 +19999.32 31.2445915936262 +20000.518 31.244778479662273 +20019.624 31.259916100691914 +20052.48 31.26504727871928 +20071.344 31.268256972820243 +20077.354 31.269301942849236 +20081.186 31.26996821991265 +20111.939 31.286503415409218 +20141.567 31.302323427390004 +20144.451 31.303863156373495 +20152.534 31.30818933401142 +20153.2 31.308545790068187 +20157.896 31.310446154165998 +20159.864 31.31124263643126 +20189.308 31.323159111948616 +20193.129 31.324711686435517 +20219.722 31.335517133525325 +20220.998 31.336017771212937 +20243.168 31.350871734782533 +20250.882 31.353939873398765 +20260.741 31.354252402440498 +20318.894 31.356217359211062 +20331.037 31.356627185770865 +20351.27 31.357310050037086 +20354.939 31.357433878880695 +20371.503 31.3579929143033 +20383.741 31.37996196532454 +20387.948 31.387597604814864 +20388.53 31.388653925752205 +20392.183 31.388858249948026 +20420.578 31.389883288594408 +20432.828 31.39032550459786 +20436.339 31.39044400093744 +20437.107 31.39050365034943 +20448.403 31.3920658713519 +20470.879 31.39382807826424 +20477.126 31.394027416534406 +20488.755 31.394398491409348 +20497.399 31.394683603380283 +20503.904 31.394918821166804 +20521.424 31.39552412650493 +20533.577 31.39594400525917 +20533.921 31.395959027463707 +20542.669 31.396370254841045 +20544.244 31.396444292691896 +20549.443 31.39664127423128 +20554.911 31.39683702203161 +20558.085 31.396950647400722 +20560.339 31.397015800670438 +20577.64 31.3982264979333 +20590.274 31.399110605743196 +20591.867 31.399222081423204 +20594.946 31.400921169868965 +20603.137 31.405407846357086 +20604.434 31.40609019983928 +20607.459 31.407681656495907 +20615.92 31.407983992376256 +20618.282 31.40810267595002 +20635.19 31.409096236708827 +20636.657 31.40916114936258 +20662.728 31.411087351488852 +20703.456 31.414096455865327 +20712.585 31.414782474716315 +20721.238 31.415049840611434 +20736.873 31.418720823562182 +20738.83 31.419166811578165 +20738.996 31.41917432895775 +20739.172 31.41918392536457 +20747.974 31.419756893700807 +20757.789 31.420395803519057 +20770.61 31.42126155915814 +20777.402 31.421657442793226 +20780.016 31.421754163544026 +20795.645 31.42247239295362 +20805.318 31.42291691487306 +20820.153 31.42326278665469 +20822.052 31.423307061040493 +20822.873 31.423332347274805 +20825.705 31.4234195709235 +20841.109 31.42385655438313 +20849.1 31.438527344693608 +20858.506 31.44223349291928 +20866.724 31.44240914569003 +20873.002 31.442543332608338 +20893.235 31.448835179497863 +20913.468 31.44926764268969 +20941.843 31.449874134216813 +20952.498 31.45215454761837 +20953.431 31.452660761010446 +20955.264 31.453655283140854 +20961.605 31.46072702442005 +20964.511 31.46407728676977 +20969.871 31.470678082532743 +20975.07 31.476799469535713 +20978.137 31.47881211197991 +20981.64 31.48115433550798 +20983.49 31.48151041369863 +20984.226 31.481651144575647 +20990.315 31.482739869608565 +20998.044 31.484257412866114 +20999.394 31.484548202011936 +21000.086 31.484576096439824 +21002.817 31.484760221286624 +21002.937 31.484768327244062 +21016.709 31.485698620959184 +21031.101 31.486250948409616 +21035.071 31.486605734448347 +21037.411 31.48681485266766 +21039.367 31.486989573549142 +21047.214 31.487261589417997 +21047.633 31.48727611403238 +21051.085 31.487914239547656 +21052.16 31.488112821515106 +21056.687 31.488269164213584 +21065.374 31.488569175042333 +21075.428 31.490162975019036 +21107.798 31.495294395871017 +21113.445 31.495499412944564 +21124.308 31.495893799427638 +21138.08 31.496600162671832 +21146.926 31.49689869473434 +21148.054 31.49692756333197 +21149.952 31.49696967175599 +21153.671 31.49783752300072 +21174.87 31.524337701947065 +21178.081 31.52506294732839 +21198.3 31.529671354696095 +21204.65 31.531118675868502 +21205.199 31.53133901227304 +21210.303 31.533387458554923 +21218.675 31.53674748838877 +21237.401 31.544678131176088 +21246.875 31.548480439184434 +21251.335 31.550270421632938 +21256.127 31.55376852713884 +21263.524 31.559168253020953 +21265.311 31.56047274269938 +21265.678 31.560740648525893 +21266.44 31.56128597518354 +21269.602 31.563548866117262 +21274.495 31.565433819176704 +21286.005 31.569867869802934 +21290.603 31.577610062431308 +21295.376 31.584819204907735 +21302.726 31.595920649953136 +21303.064 31.59643116538516 +21310.604 31.598028272132087 +21312.211 31.598368663450703 +21322.184 31.60075669249955 +21322.567 31.60084840162677 +21325.827 31.601538927886054 +21325.832 31.601538931123443 +21335.226 31.601547306180766 +21336.546 31.601547473108603 +21347.141 31.601545897085757 +21347.173 31.601547965261563 +21354.318 31.602009819999832 +21354.345 31.602011565287153 +21357.138 31.602194407505277 +21368.838 31.602202424435532 +21388.173 31.602522659726674 +21399.556 31.602704941358184 +21402.971 31.602759627448986 +21406.955 31.602822452902767 +21415.92 31.60282148631755 +21424.049 31.602820530388726 +21438.226 31.60281886324604 +21451.452 31.602808744402086 +21485.935 31.602808744402086 +21486.989 31.602808744402093 +21496.034 31.602808744402086 +21506.468 31.60289599777654 +21528.373 31.60289599777654 +21537.083 31.60323911407212 +21543.558 31.603494186174753 +21552.702 31.603858559271924 +21560.693 31.60417698724869 +21567.678 31.60446735213819 +21568.899 31.604518108835414 +21584.683 31.605175498944455 +21585.304 31.605235069795803 +21610.774 31.607668345185775 +21610.816 31.60767235765402 +21626.296 31.608311013023418 +21635.446 31.608714003556592 +21638.81 31.610896042602146 +21647.332 31.616427935742202 +21647.784 31.61673344374894 +21657.116 31.617528750460263 +21683.799 31.619029500450633 +21683.904 31.61903540603655 +21690.444 31.619403239673584 +21694.88 31.624722184863103 +21699.614 31.630398444224518 +21700.427 31.63041262793122 +21706.929 31.630526062692613 +21708.281 31.630646641070726 +21717.459 31.631474633221988 +21721.138 31.63395213901522 +21722.153 31.63488286873709 +21728.315 31.64054039079063 +21735.632 31.642486558078694 +21745.857 31.642721291686687 +21759.622 31.643023118836012 +21761.315 31.64306054755176 +21764.106 31.64311902516789 +21783.322 31.6506831336241 +21788.829 31.65502191704562 +21796.181 31.660814315032717 +21800.932 31.662684479441314 +21804.012 31.663845416552256 +21810.716 31.66385516015957 +21817.469 31.66386497498359 +21833.488 31.66391128428202 +21835.586 31.66392804073841 +21840.51 31.665237482254238 +21844.018 31.666171951088657 +21865.075 31.704273653982526 +21876.042 31.70713260266023 +21886.796 31.7099825654369 +21890.424 31.710930511946888 +21897.55 31.712778974801456 +21902.179 31.71397972340569 +21905.856 31.714950697911313 +21908.304 31.71559713402492 +21920.074 31.71911304292729 +21931.946 31.72224804682469 +21937.917 31.723869452068485 +21940.137 31.724543060385713 +21953.268 31.728519297804024 +21964.401 31.731890514861213 +21971.709 31.734992799215938 +21972.527 31.73531396791341 +21977.399 31.73663396086927 +21980.653 31.737515661360064 +21985.332 31.738783888733362 +21989.803 31.739978483910665 +21990.651 31.740205384407083 +21997.822 31.74313695987904 +22005.282 31.74630674833846 +22011.016 31.747262707356967 +22011.807 31.74739625167898 +22015.531 31.747497231805394 +22023.363 31.76642906309294 +22034.101 31.784185624336892 +22039.803 31.793611871203723 +22045.852 31.80361176024219 +22051.434 31.80378138117969 +22070.126 31.80441760762467 +22078.399 31.804637319666444 +22082.328 31.804741664959824 +22089.849 31.804820157836932 +22094.96 31.804918347292983 +22122.697 31.80547974743288 +22124.202 31.80558649351033 +22166.834 31.808689233137052 +22174.978 31.809281950145866 +22184.264 31.809957781450375 +22189.534 31.810330199221237 +22195.035 31.81071894118662 +22205.705 31.8112235549549 +22209.577 31.811532570633872 +22213.831 31.811859930799628 +22216.367 31.812031905163355 +22221.957 31.812410981146513 +22240.175 31.84770009412708 +22248.47 31.848262604910662 +22257.461 31.848873455208484 +22263.149 31.849359198521725 +22271.681 31.850087813491584 +22274.971 31.850544094945008 +22277.763 31.85091568989275 +22279.214 31.851007884557834 +22289.938 31.85224333101184 +22291.402 31.852408776670043 +22300.468 31.855411545360532 +22310.28 31.858345173424823 +22310.998 31.85871039643958 +22321.528 31.864066661544584 +22321.783 31.86419535408494 +22325.513 31.86611032359012 +22334.014 31.868692189492258 +22344.674 31.871929784099002 +22373.259 31.88087881933772 +22399.349 31.891948388787867 +22416.694 31.899293788661744 +22421.217 31.90111442901155 +22427.989 31.903027885480647 +22437.315 31.90892380921786 +22450.506 31.91726319695296 +22461.563 31.924240877261486 +22466.238 31.927201612814333 +22516.344 31.928522067867245 +22533.843 31.92898322307762 +22559.45 31.92965776771265 +22569.785 31.930007421008426 +22572.09 31.930068139772192 +22576.549 31.93018975245238 +22579.486 31.9302698774263 +22580.12 31.930300880694453 +22583.896 31.930976567167434 +22585.231 31.931214661706 +22588.724 31.93183154566548 +22597.328 31.932232186047443 +22599.59 31.932357303909896 +22603.176 31.93257435997839 +22604.016 31.93261934310182 +22610.71 31.93305185655989 +22616.546 31.933428932828367 +22618.229 31.933516540788176 +22618.677 31.93352899100208 +22621.41 31.93360493981192 +22625.409 31.933717036900457 +22627.513 31.933776014713473 +22629.973 31.933898072043057 +22644.059 31.934596974296944 +22662.709 31.935522327628973 +22663.724 31.935580339640573 +22675.848 31.936383617578965 +22685.799 31.936990943902213 +22703.304 31.938059303593533 +22705.485 31.938175973564782 +22739.107 31.939966414190067 +22743.899 31.940221598042196 +22744.219 31.940238638700098 +22746.575 31.940343489069708 +22747.205 31.940371646468762 +22757.25 31.940818684653273 +22784.494 31.94294322412738 +22786.87 31.943135928996817 +22789.56 31.943329620410623 +22790.276 31.943384018917147 +22794.969 31.943639271408117 +22796.147 31.943650726216074 +22825.196 31.94400221952553 +22872.229 31.94457131948849 +22875.631 31.94461248373644 +22879.1 31.944649781130757 +22894.831 31.944818914976207 +22898.36 31.94485685746814 +22905.399 31.94492349955752 +22905.5 31.944965034382683 +22915.452 31.949057653986983 +22915.949 31.949262038225665 +22918.078 31.949306185085522 +22920.925 31.94936735183063 +22929.671 31.950763782340694 +22939.034 31.954351636230076 +22943.89 31.955464998836128 +22953.268 31.96203347886782 +22963.713 31.962952350816302 +22969.736 31.96348630052443 +22988.451 31.99191863984702 +22992.71 32.00032417356417 +23006.433 32.00772150738366 +23007.186 32.00778595315855 +23018.416 32.014930314712345 +23025.187 32.01705635172644 +23028.219 32.01780837302351 +23030.754 32.01843888784743 +23038.135 32.01873387475654 +23038.858 32.01890178797528 +23045.662 32.02151246421642 +23046.739 32.02192563765862 +23050.241 32.022526952442774 +23055.343 32.022630328839554 +23066.368 32.02297837774847 +23067.131 32.02299383760553 +23070.373 32.023027413706245 +23075.158 32.02305951837871 +23086.125 32.027866726840614 +23090.626 32.02793626297238 +23091.594 32.0279504929304 +23103.647 32.02905053846774 +23104.062 32.02909200736685 +23115.532 32.030219789347115 +23115.559 32.030222210350786 +23116.002 32.03026193274442 +23116.445 32.03030165513807 +23126.52 32.049486183512805 +23127.417 32.051194225393914 +23134.409 32.06450819287739 +23139.302 32.06494693254353 +23156.882 32.066523274936884 +23181.622 32.06874163163834 +23187.091 32.06927870559721 +23197.992 32.070256105396325 +23198.314 32.0702883087429 +23204.735 32.071107686160424 +23215.482 32.08566870750086 +23216.234 32.08674825152215 +23239.904 32.091678266109724 +23242.703 32.09203162846624 +23250.524 32.09235424095753 +23263.174 32.092876047378056 +23264.326 32.09292356682442 +23270.761 32.09394821411307 +23281.497 32.09565771112798 +23286.63 32.09624622455709 +23296.452 32.09737234551966 +23302.335 32.10540311863173 +23306.555 32.111162452614266 +23313.651 32.1208468682399 +23316.512 32.12474476803235 +23322.884 32.12545841483315 +23325.696 32.12577061746853 +23328.7 32.1261022872354 +23337.947 32.12712324396189 +23344.806 32.12805001051597 +23345.103 32.12809014018462 +23351.077 32.12890378930123 +23352.749 32.12940885517613 +23354.948 32.130012424118625 +23358.99 32.1310241667089 +23360.549 32.13141405009445 +23367.832 32.13202735914102 +23370.021 32.13232143299588 +23371.526 32.13252361716746 +23376.994 32.133258197267224 +23386.156 32.1340287359223 +23392.387 32.13455277285308 +23395.155 32.13478540499128 +23395.318 32.13479905332781 +23421.888 32.13703509482565 +23431.684 32.143141216429285 +23433.628 32.14330481690621 +23435.722 32.14348581347822 +23438.287 32.14372782593925 +23440.994 32.143983236361095 +23448.721 32.14471229300298 +23449.739 32.14480834317269 +23472.74 32.145290178192155 +23495.532 32.146012702371024 +23498.54 32.14610805831741 +23503.062 32.14625616561297 +23515.716 32.14667717143293 +23527.147 32.14705748734315 +23535.804 32.14734551068623 +23537.383 32.1473855455029 +23545.457 32.147581765585905 +23555.455 32.147824744083536 +23557.938 32.14788508771322 +23564.935 32.150952550758355 +23566.122 32.15147299692171 +23569.394 32.15290762189773 +23573.272 32.15461582251125 +23576.789 32.15629069055407 +23605.73 32.17007299252372 +23610.581 32.17238313892001 +23610.851 32.172553853895955 +23611.339 32.17284496638129 +23612.935 32.17379704737837 +23616.044 32.175682694283786 +23627.201 32.18233831313371 +23627.802 32.18287046070102 +23629.085 32.18400035317086 +23629.129 32.184032235896495 +23631.41 32.18574039048095 +23635.097 32.18743628974274 +23635.619 32.18767212999106 +23639.828 32.189573761418636 +23641.014 32.19011611649032 +23649.402 32.19365919029789 +23649.508 32.193703586524734 +23652.899 32.195124471589324 +23664.784 32.20010448308818 +23675.189 32.20540708728636 +23676.508 32.206078934349385 +23689.778 32.21163583552337 +23710.337 32.21183537741282 +23711.362 32.21184532587513 +23737.483 32.21204582907075 +23748.061 32.21212702515066 +23765.734 32.21226268201588 +23795.114 32.21248278916135 +23799.565 32.21815111866536 +23804.176 32.22398879474676 +23812.966 32.24147933812854 +23814.863 32.24807341556171 +23815.146 32.24906071060584 +23824.55 32.26425510663667 +23829.056 32.27147130631661 +23831.211 32.2717542771361 +23856.051 32.272113267569274 +23866.907 32.27221540945552 +23868.591 32.27235178512471 +23874.242 32.27240495422927 +23881.96 32.27240709542872 +23885.764 32.27240815076983 +23895.094 32.27351009238637 +23905.258 32.27472192113342 +23908.625 32.27511865449119 +23910.031 32.27528746528031 +23911.528 32.27546720194554 +23919.428 32.27548485566119 +23922.252 32.275491166305876 +23930.596 32.275507650288084 +23933.635 32.27551365398199 +23937.292 32.27560538789188 +23939.461 32.27565979610914 +23944.621 32.275777701197356 +23955.223 32.27653284340878 +23955.956 32.27658505235436 +23965.876 32.27836601334948 +23977.342 32.280449605559426 +23986.49 32.281261596360046 +23998.186 32.282299751629395 +23998.834 32.28235477190812 +24007.348 32.282947001440554 +24016.51 32.283619613380296 +24020.326 32.28389975823536 +24025.672 32.28429325168568 +24039.637 32.28536022913832 +24063.348 32.28717183689912 +24083.104 32.288885535394385 +24086.633 32.2892953315606 +24101.41 32.29106135276012 +24101.57 32.29108015809701 +24110.693 32.29152530923008 +24122.046 32.29416211716662 +24134.598 32.294747135144576 +24142.163 32.29804156338065 +24150.151 32.299411754312914 +24157.013 32.308414707854624 +24166.843 32.32131210567852 +24167.543 32.32222816454036 +24169.716 32.32507177921573 +24171.572 32.327499041207496 +24178.691 32.32879699337233 +24179.521 32.32894832084765 +24183.489 32.32966571919386 +24201.892 32.338530229067445 +24201.909 32.33853330259867 +24202.234 32.338604264039944 +24220.295 32.34255299076948 +24228.102 32.34425985692182 +24232.745 32.345280240396455 +24235.257 32.34583404034484 +24245.997 32.34820223341717 +24251.87 32.34957790594356 +24259.364 32.35133110384129 +24292.859 32.35892414958287 +24302.466 32.361101978824244 +24325.269 32.36337045353598 +24332.67 32.36416909426406 +24333.848 32.36429686377921 +24348.03 32.36711419119519 +24373.579 32.36988531457604 +24374.779 32.36997940101801 +24376.69 32.37012936280135 +24377.784 32.37021397011632 +24397.951 32.37080791111319 +24413.141 32.37115684783284 +24419.137 32.37186072317922 +24430.907 32.37323354119064 +24432.349 32.37341727801492 +24439.883 32.37407928653022 +24444.624 32.37423573339072 +24471.806 32.375132704190555 +24471.887 32.37513876327966 +24479.093 32.375644346098866 +24525.598 32.376963065319075 +24528.641 32.37716521013833 +24532.77 32.377439434684206 +24535.936 32.37764970228224 +24536.596 32.377693535704445 +24543.317 32.37842426650604 +24551.737 32.37981349023262 +24556.377 32.38032030150203 +24565.133 32.381006965978486 +24576.214 32.383313132803615 +24591.645 32.38395925437003 +24591.905 32.38397012343336 +24603.516 32.387910632399326 +24615.401 32.38832275901062 +24617.978 32.38840270550492 +24622.269 32.38851957888221 +24624.219 32.38857482526059 +24627.286 32.38862009822798 +24639.171 32.388795536512106 +24639.949 32.38880683592205 +24645.024 32.389798966994334 +24652.268 32.3912071947544 +24655.691 32.39198701837843 +24656.014 32.39206060383871 +24666.358 32.393304363118794 +24674.962 32.394338905350594 +24675.113 32.39435706154271 +24677.357 32.39455188587908 +24683.566 32.394636742457486 +24696.134 32.394810744983374 +24697.67 32.39492868378488 +24708.672 32.395083420540345 +24717.227 32.395199438124365 +24719.769 32.39523391114583 +24721.305 32.39539816228661 +24729.335 32.39565403968503 +24737.847 32.395836279565806 +24738.276 32.39584544702771 +24741.983 32.39586689780039 +24747.438 32.39579031131835 +24756.6 32.395794834649216 +24764.441 32.39579870579497 +24764.696 32.39578259258551 +24765.762 32.3957831188757 +24766.18 32.395787908210934 +24775.294 32.39626084232042 +24789.15 32.39697737445154 +24807.427 32.397958691465504 +24836.26 32.39834096376875 +24849.618 32.39851806616625 +24888.967 32.399039761198345 +24897.879 32.39919112827599 +24903.324 32.39926555606667 +24908.882 32.39974610839644 +24924.403 32.401160950028775 +24941.26 32.40146681536294 +24951.321 32.401646228686644 +24958.966 32.40176253791842 +24993.42 32.40190895813755 +24997.478 32.40192479660695 +24998.017 32.4019257293976 +25020.878 32.40196529252761 +25043.635 32.40449835114456 +25057.031 32.40616947643481 +25058.568 32.40635052323793 +25069.352 32.40642513885538 +25073.63 32.40645473878225 +25076.94 32.40658798071304 +25080.324 32.40670226185152 +25082.829 32.406786858261654 +25092.494 32.40679121558377 +25098.139 32.40682159641958 +25104.231 32.40685438296552 +25109.924 32.40688562317017 +25117.723 32.406928302477965 +25131.622 32.407498559835155 +25135.178 32.407533474844904 +25140.113 32.407581929730476 +25146.027 32.40766132144605 +25161.256 32.4159916449529 +25169.551 32.41610214165156 +25171.772 32.416131727325784 +25175.004 32.41617478040957 +25181.55 32.41622726756894 +25195.858 32.41628948301132 +25200.798 32.41631096360157 +25219.934 32.41639476999117 +25240.437 32.416484563177114 +25240.712 32.41651550709563 +25242.172 32.41667978812632 +25244.646 32.41695816570845 +25248.855 32.41697659030429 +25252.211 32.41699128095376 +25253.064 32.41699504751701 +25257.514 32.41701983378339 +25266.909 32.417072163440174 +25278.486 32.417136646722405 +25279.479 32.41725724764917 +25287.281 32.41826826457665 +25287.298 32.418268434063094 +25306.421 32.41830355433953 +25318.219 32.41832259880108 +25326.898 32.41834550994821 +25340.024 32.41841336201398 +25347.929 32.42049811258587 +25352.873 32.421796746734884 +25356.353 32.42288667897929 +25363.118 32.423256336476875 +25370.863 32.42328818735776 +25371.373 32.42329026520303 +25374.791 32.42330419084057 +25385.51 32.4233512045051 +25397.637 32.42320630537081 +25408.931 32.42598330545874 +25411.922 32.42671595339559 +25419.129 32.42848131403783 +25420.365 32.42848558326368 +25438.813 32.428557864144565 +25440.424 32.42856367386469 +25440.621 32.42856426357858 +25442.225 32.428576719131456 +25443.137 32.4285838010917 +25448.845 32.42862547683137 +25449.723 32.428729998448254 +25451.419 32.42893347650019 +25453.342 32.42916418893762 +25455.448 32.429490706671984 +25459.611 32.43490049431036 +25462.678 32.43888761225978 +25465.867 32.43938367691558 +25472.949 32.44023697670075 +25476.398 32.440267137158465 +25486.496 32.44035544110219 +25492.476 32.44039260827451 +25494.873 32.440407506219664 +25504.907 32.440485423170124 +25505.695 32.44049113776762 +25512.003 32.44053688355584 +25515.459 32.44056369530912 +25530.597 32.44068113637426 +25539.841 32.44074817411464 +25540.274 32.4407505602271 +25552.427 32.443472166771485 +25553.183 32.443643848419725 +25562.038 32.44565520758354 +25573.767 32.44583364666288 +25584.58 32.44614547468646 +25586.179 32.446181186846154 +25600.236 32.44650575040177 +25614.391 32.446848813046955 +25659.202 32.447901108479485 +25713.131 32.449482887888124 +25731.505 32.450095028794905 +25736.383 32.45027697731028 +25741.302 32.45039761849471 +25802.478 32.45486347911924 +25811.841 32.45550967010565 +25821.368 32.456173059130634 +25844.007 32.45774355433973 +25878.126 32.46009874231075 +25879.408 32.46027006743747 +25895.05 32.46171122805423 +25901.141 32.46187879433593 +25902.056 32.461903966417324 +25908.662 32.46263636392833 +25922.245 32.46415054178732 +25923.604 32.46430744717206 +25930.479 32.465048761855684 +25938.713 32.46590383839662 +25953.71 32.46746123248023 +25967.8 32.468924437297076 +25976.572 32.46985230315833 +25986.153 32.47098206395613 +25994.905 32.472014193545306 +26013.603 32.47413003820929 +26022.941 32.475165487597344 +26032.329 32.47660039180723 +26041.392 32.47800101665928 +26045.513 32.478292311587275 +26066.519 32.47867731903462 +26069.05 32.478722128573516 +26071.472 32.481949961457936 +26077.36 32.48979339293506 +26078.421 32.49120675584221 +26080.438 32.4938986633991 +26085.245 32.49419214002069 +26089.21 32.494434210918236 +26094.263 32.49470192916178 +26094.509 32.49471497833289 +26116.526 32.49650714935495 +26130.241 32.49758038288397 +26135.104 32.49780921912956 +26153.846 32.498090929053376 +26170.178 32.498338659416724 +26175.699 32.49842205429509 +26191.008 32.49865329722079 +26192.264 32.498672269140236 +26199.722 32.49878492246442 +26203.127 32.498845762541606 +26216.294 32.49932833002921 +26224.836 32.4996432528269 +26239.025 32.50017162590759 +26240.317 32.50021618564393 +26240.787 32.50023102577555 +26256.615 32.50043351092316 +26280.445 32.50068627086748 +26280.912 32.50069450914255 +26297.028 32.50097880901583 +26306.626 32.50108090494127 +26316.224 32.50118270896752 +26321.507 32.50123907548256 +26331.602 32.50134678321856 +26338.671 32.5024259302629 +26341.892 32.502885976229635 +26346.664 32.50342255453969 +26350.078 32.50380516977867 +26351.939 32.50401362001796 +26362.193 32.5051621685154 +26375.084 32.50524146742307 +26382.341 32.5052927009976 +26384.073 32.50529497428167 +26384.738 32.50529584710725 +26393.674 32.50530562948372 +26395.577 32.50530772441685 +26395.819 32.505462839453465 +26425.216 32.52430547057428 +26431.691 32.52436062411687 +26469.708 32.52468421641187 +26493.282 32.524884873085526 +26501.474 32.524954610977645 +26507.725 32.52496146121623 +26513.654 32.524967958586984 +26517.562 32.52497224121895 +26521.552 32.5262256160004 +26525.653 32.52751385910284 +26529.349 32.53250158810922 +26544.032 32.54916760630948 +26551.262 32.54988836121696 +26563.827 32.551623923156704 +26568.631 32.552301071720464 +26571.944 32.55278150089108 +26584.097 32.56892486226875 +26597.048 32.57094726519977 +26617.579 32.572048324711716 +26664.39 32.57427446776154 +26675.294 32.57486324943617 +26682.55 32.57525505059456 +26685.388 32.57536759416499 +26702.49 32.57604579012746 +26706.699 32.57632672725053 +26709.85 32.57633056744849 +26710.908 32.5763327738708 +26715.117 32.57634155159433 +26722.936 32.57635785784768 +26736.431 32.57638600120218 +26753.269 32.57640652206959 +26761.787 32.576416903156925 +26803.518 32.576684099941126 +26864.772 32.57676824895299 +26884.492 32.576795339730964 +26886.159 32.57695198298275 +26892.06 32.5775069348403 +26920.419 32.57754366720914 +26926.962 32.577552142116204 +26945.837 32.57757659020894 +26952.594 32.57758534230233 +27000.322 32.57758899538554 +27020.253 32.577590520896806 +27100.655 32.57765190926402 +27115.682 32.57766338264769 +27125.41 32.577670810149954 +27165.564 32.57770146844822 +27230.628 32.57779673674716 +27290.615 32.57784266244183 +27308.14 32.57785604309325 +27357.215 32.57789351273481 +27368.841 32.57875984036437 +27380.467 32.57876073021404 +27385.039 32.578761080153214 +27392.093 32.57876162006372 +27403.977 32.57877096262872 +27425.942 32.578788230336556 +27433.471 32.578794149233545 +27462.972 32.5788173413414 +27482.191 32.57881881235645 +27483.996 32.57882193067534 +27501.214 32.578851640275786 +27503.683 32.57901578441509 +27520.188 32.58008581960906 +27525.175 32.58008619082005 +27553.003 32.580088262217565 +27560.571 32.580088825547165 +27568.873 32.580089443512605 +27612.421 32.5800926850398 +27624.396 32.58009357640768 +27633.721 32.58013015994063 +27646.714 32.58013112708407 +27663.686 32.580172296533505 +27668.241 32.58018334572287 +27675.79 32.58021446374374 +27677.699 32.58023262776974 +27724.322 32.58059715120555 +27808.644 32.58115015257016 +27824.141 32.581356507459276 +27880.51 32.58179923455058 +27888.655 32.58209003005247 +27972.842 32.5852118377374 +28017.27 32.58684412854697 +28041.367 32.58772992753077 +28043.002 32.58774430294973 +28080.322 32.588072431778556 +28113.416 32.58836967946965 +28119.674 32.592520724149416 +28134.36 32.59252629605914 +28143.544 32.59273366227759 +28152.728 32.5927354052819 +28161.131 32.59273804278517 +28286.968 32.59660648272572 +28335.94 32.59811110794375 +28416.423 32.60774792882369 +28483.834 32.61581954310668 +28492.078 32.61582062905497 +28512.052 32.63749118128956 +28531.352 32.637493723599356 +28545.878 32.63777345545602 +28567.991 32.638199292613294 +28655.318 32.63988097675534 +28681.755 32.64038680202252 +28714.276 32.64147320675109 +28719.249 32.64147324472773 +28725.967 32.64147329603017 +28837.917 32.641474150943694 +28850.82 32.64151043596552 +28872.32 32.642201667386324 +28873.244 32.64220419507959 +28919.456 32.64233379671855 +28981.995 32.64233379671855 +29031.438 32.64233379671855 +29044.099 32.64478502800179 +29047.52 32.644785541887195 +29076.803 32.644789940632045 +29079.627 32.64479036483911 +29081.443 32.64522134938896 +29091.67 32.64764894238425 +29102.625 32.650249188006484 +29129.687 32.656667268002565 +29140.73 32.65928640344301 +29157.908 32.66336192547487 +29167.704 32.66569251873884 +29184.253 32.66962973677941 +29199.167 32.67317702810524 +29205.721 32.674731567640336 +29209.197 32.67556361959663 +29229.628 32.680459625173754 +29238.16 32.68048061424744 +29248.928 32.68050710397384 +29251.498 32.680649208587525 +29256.465 32.680925902869085 +29266.355 32.68197164448395 +29267 32.68203983641159 +29334.008 32.682231451425636 +29344.511 32.68225435948344 +29375.791 32.6823602254299 +29416.518 32.682511208786906 +29417.487 32.682514801069004 +29490.46 32.68510800650765 +29499.028 32.685383485225856 +29511.434 32.68578236349127 +29530.95 32.68646229696469 +29551.592 32.687126116881494 +29560.514 32.68743164166984 +29620.087 32.69951964201464 +29662.517 32.699622096866555 +29702.737 32.69971921527673 +29711.676 32.70001344560944 +29713.228 32.70006590164145 +29736.767 32.7000942986632 +29740.206 32.70009844741029 +29741.032 32.70009903992506 +29797.878 32.700125762638116 +29862.266 32.70015116923926 +29883.19 32.700194360347126 +29884.283 32.70019728147256 +29955.418 32.700359326285245 +29964.599 32.70038024051067 +29996.637 32.700453819451184 +30008.05 32.70073200501192 +30027.723 32.708722158161386 +30042.542 32.708755915693956 +30055.738 32.70878597604889 +30081.099 32.70878597604889 +30101.187 32.70878597604889 +30181.332 32.70878597604889 +30221.119 32.708787070284025 +30228.286 32.708787070284025 +30229.192 32.708787070284025 +30272.4 32.70890893132706 +30281.346 32.70890893132706 +30400.834 32.70890893132706 +30410.319 32.70890893132706 +30414.846 32.70890893132706 +30415.271 32.70890904087681 +30432.352 32.70891344374556 +30436.615 32.70891542385529 +30449.18 32.708932012532934 +30460.062 32.70900943809325 +30470.944 32.70902099983641 +30501.837 32.70906418044358 +30543.999 32.709162108019 +30579.664 32.70920900225883 +30601.821 32.71022351014287 +30601.834 32.71022410209595 +30621.779 32.71024690582531 +30738.86 32.71038076811848 +30772.661 32.71040969304146 +30827.389 32.71052968792921 +30835.623 32.710842997213405 +30843.857 32.71086105082227 +30887.011 32.71095566892243 +30930.165 32.711050287022594 +31271.856 32.7118086711089 +31279.359 32.71182512195019 +31283.33 32.71182852010023 +31339.01 32.71187616779443 +31398.661 32.71192721363866 +31497.253 32.71296304705911 +31506.582 32.713061059980845 +31564.976 32.7136745626662 +31579.912 32.71368770298673 +31853.745 32.71393004742104 +31895.476 32.71396597675622 +31930.552 32.71399633230135 +32118.437 32.714182817400385 +32276.868 32.7143633710751 +32433.142 32.7145176629106 +32648.075 32.7147015900273 +32769.161 32.7147015900273 +32778.073 32.714334327869004 +32821.432 32.714334327869004 +32889.995 32.714334327869004 +32895.589 32.714324432088944 +32927.234 32.71433014306163 +32935.732 32.71433014306163 +32957.864 32.71433014306163 +32980.37 32.71433014306163 +33001.434 32.71433014306163 +33091.635 32.71433014306163 +33100.972 32.71433014306163 +33106.386 32.71433014306163 +33132.116 32.71434019735427 +33142.332 32.71435838446531 +33153.574 32.71437400518012 +33166.433 32.71592288516891 +33174.265 32.71932953870115 +33177.302 32.71933381027808 +33215.65 32.71933446280474 +33222.488 32.71933446280474 +33232.464 32.71933446280474 +33711.185 32.71933446280474 +34859.535 32.720545446283374 +34897.88 32.72058588270214 +34905.648 32.72198983319013 +34948.078 32.72199363249157 +35319.884 32.72199363249157 +35372.112 32.72226100839287 +35420.022 32.72250627873506 +35428.565 32.72254443990173 +35433.453 32.72225388788426 +35504.412 32.722617155223254 +35811.785 32.7241907198421 +35885.584 32.72456852627047 +35924.978 32.724783664645756 +35965.314 32.72479804360298 +35998.185 32.72481085452435 +36060.107 32.72483201939234 +36074.732 32.72480518281304 +36080.832 32.72485449252047 +36083.831 32.72488423821706 +36101.557 32.72488423821706 +36122.282 32.72488423821706 +36234.165 32.72488598995082 +36256.172 32.7248863345108 +36339.322 32.7248863345108 +36384.499 32.7248863345108 +36494.532 32.72489529902285 +36638.605 32.727273443129086 +36642.814 32.72755763079297 +36647.023 32.72755763079297 +36651.232 32.72755763079297 +36781.588 32.72755763079297 +36793.71 32.72755763079297 +36799.8 32.72755763079297 +36805.497 32.72755763079297 +36815.778 32.72755763079297 +36824.897 32.7276064243617 +36826.952 32.72761744784368 +36963.641 32.727660581775375 +37003.932 32.72766112433757 +37035.23 32.72766545932492 +37044.946 32.727665590161436 +37047.078 32.72766561887114 +37070.995 32.727672574072955 +37081.937 32.72773678273169 +37116.796 32.727931201339544 +37151.13 32.72830236230077 +37154.101 32.72831893241707 +37158.941 32.72831893241707 +37180.586 32.728331348015885 +37190.501 32.728331348015885 +37226.901 32.728331348015885 +37238.058 32.728492657260716 +37249.443 32.728492657260716 +37343.265 32.728492657260716 +37505.944 32.728492657260716 +37523.662 32.728492657260716 +37558.582 32.728492657260716 +37566.834 32.72849412053395 +37581.649 32.729105840983344 +37666.512 32.729105840983344 +37674.227 32.72914198686494 +37751.265 32.72914198686494 +38016.819 32.72914198686494 +38052.335 32.72914198686494 +38130.685 32.72914284807573 +38270.711 32.72914284807573 +38281.454 32.72914284807573 +38296.687 32.72914284807573 +38337.524 32.72914284807573 +38352.216 32.72914284807573 +38603.435 32.72914284807573 +38757.845 32.72914284807573 +38768.344 32.72914483484766 +38804.543 32.732408618220205 +38813.677 32.73495049413583 +38815.596 32.73518014466359 +38931.854 32.73951936592693 +38958.831 32.740521152278724 +38969.713 32.74052699929518 +38980.595 32.74052699929518 +39105.863 32.74078715354916 +39127.388 32.74083185626906 +39322.774 32.741237630282114 +39332.372 32.74125756323011 +39341.97 32.741277496178114 +39375.987 32.74134575899331 +39542.549 32.74169167185894 +39549.703 32.74170652915316 +39687.29 32.74199226727736 +39719.211 32.742058560216826 +39753.33 32.74212941792184 +39762.247 32.74214793658169 +39770.99 32.742166093881586 +39796.649 32.74271048150562 +39830.752 32.742781305982135 +39869.281 32.74286132229317 +40062.278 32.74286132229317 +40753.037 32.74288605501849 +40757.967 32.742886455607724 +40761.772 32.743110842343356 +40767.771 32.74346412520143 +41005.768 32.7434806741804 +41007.125 32.743492130764 +41026.218 32.74365332497967 +41050.713 32.74365332497967 +41094.301 32.74365332497967 +41181.612 32.743626019452655 +41268.923 32.743626019452655 +41356.234 32.743626019452655 +42509.544 32.743626019452655 +42651.512 32.743639721310984 +42793.48 32.743639721310984 +43296.07 32.743639721310984 +43798.66 32.743639721310984 +43806.445 32.74363698090819 \ No newline at end of file diff --git a/assets/system-bookmarks/precomputation/greedy.dat b/assets/system-bookmarks/precomputation/greedy.dat new file mode 100644 index 0000000..1807da4 --- /dev/null +++ b/assets/system-bookmarks/precomputation/greedy.dat @@ -0,0 +1,102 @@ +x y +2096.775 5.304463744060101 +3278.352 16.33223526359845 +3765.701 17.82544457063185 +4218.115 18.589007065953005 +4684.482 19.42118685569443 +5110.977 20.260051627523794 +5489.205 21.135982097443545 +5844.729 21.791159498308467 +6029.781 22.388393403115323 +6223.579 22.622539924953074 +6475.052 22.901617781396723 +6636.333 23.051755134306912 +6840.258 23.361998325341634 +6979.642 23.552028685502886 +7178.009 23.792324344850996 +7335.255 24.37904714631765 +7562.806 24.627126371680227 +7783.907 24.830101227775987 +8004.982 24.98316925195544 +8298.254 25.134506113585452 +8537.904 25.253864984545505 +8760.497 25.424271800733774 +8975.765 25.815704778578432 +9132.999 26.05737581292668 +9336.317 26.24459093572962 +9585.492 26.34288322083019 +9834.779 26.56109537386416 +10015.356 26.64092477739196 +10197.587 26.795018658955616 +10382.454 26.852112168640375 +10660.685 26.949328264208262 +11002.568 27.132409940676443 +11212.622 27.39460054169387 +11436.797 27.491959345395113 +11713.363 27.574627957485113 +11935.723 27.769619399694005 +12244.282 28.025041014432883 +12581.571 28.091760646148813 +12858.842 28.315622825578973 +13184.942 28.397586054247707 +13420.055 28.5539632384609 +13659.684 28.735798273742716 +13932.029 28.8003790969466 +14152.145 28.89289989375855 +14446.734 29.176296841593608 +14642.384 29.31648529606198 +14929.181 29.51497966684016 +15239.433 29.593907444726458 +15492.758 29.64385069848459 +15702.097 29.875349945685944 +15990.349 29.923674072288893 +16216.101 30.000956362057998 +16536.053 30.048765593761654 +16835.814 30.179714365314794 +16947.621 30.303597674832947 +17351.936 30.454985450771478 +17698.016 30.51488489310914 +17914.157 30.57906837725667 +18176.872 30.6333851995108 +18478.734 30.686713214685515 +18700.801 30.72446873968476 +19068.58 30.79875557787023 +19274.092 30.825517076526523 +19511.412 31.047321936347846 +19771.741 31.161969837918278 +20000.518 31.244778479662273 +20437.107 31.39050365034943 +20738.83 31.419166811578165 +20984.226 31.481651144575647 +21210.303 31.533387458554923 +21399.556 31.602704941358184 +21699.614 31.630398444224518 +21920.074 31.71911304292729 +22184.264 31.809957781450375 +22450.506 31.91726319695296 +22705.485 31.938175973564782 +22992.71 32.00032417356417 +23187.091 32.06927870559721 +23371.526 32.13252361716746 +23610.851 32.172553853895955 +23829.056 32.27147130631661 +24063.348 32.28717183689912 +24333.848 32.36429686377921 +24624.219 32.38857482526059 +24836.26 32.39834096376875 +25169.551 32.41610214165156 +25397.637 32.42320630537081 +25562.038 32.44565520758354 +26032.329 32.47660039180723 +26306.626 32.50108090494127 +26571.944 32.55278150089108 +27230.628 32.57779673674716 +27880.51 32.58179923455058 +28981.995 32.64233379671855 +29530.95 32.68646229696469 +30414.846 32.70890893132706 +32118.437 32.714182817400385 +35372.112 32.72226100839287 +36963.641 32.727660581775375 +38352.216 32.72914284807573 +41005.768 32.7434806741804 \ No newline at end of file diff --git a/assets/system-bookmarks/precomputation/precomputed-full.dat b/assets/system-bookmarks/precomputation/precomputed-full.dat new file mode 100644 index 0000000..8ca731d --- /dev/null +++ b/assets/system-bookmarks/precomputation/precomputed-full.dat @@ -0,0 +1,1793 @@ +x y +2097.299 14.65229700280427 +2235.577 15.520381754568582 +2236.055 15.523347911943716 +2242.731 15.560277780341957 +2250.047 15.600348695256223 +2259.606 15.652805308857173 +2262.146 15.666892524619378 +2265.919 15.686938088204597 +2270.43 15.709657612445056 +2272.902 15.720812621906955 +2379.132 16.198550628330835 +2397.812 16.28211511284472 +2406.136 16.320082116505876 +2407.966 16.328557618797646 +2416.8 16.3696606842391 +2422.182 16.393992414322803 +2428.143 16.42034442649805 +2428.811 16.42331697162227 +2431.517 16.435194762354968 +2540.369 16.861476208457987 +2549.766 16.89846572411706 +2550.915 16.903017172017606 +2563.584 16.95167574509002 +2579.367 17.011332693328207 +2582.223 17.021613170795217 +2588.718 17.045139127383933 +2589.049 17.04635667835258 +2591.466 17.055326506775504 +2680.628 17.3813580309599 +2687.192 17.4051033938572 +2693.58 17.428116381386076 +2726.996 17.549238071153862 +2734.567 17.575115919614344 +2737.349 17.59063827340589 +2741.798 17.615419269452932 +2748.028 17.650183423565693 +2751.478 17.669630964475296 +2756.72 17.687470775644332 +2831.012 17.947171899194657 +2846.088 18.00033673696677 +2865.406 18.06712315546163 +2878.583 18.113417555246013 +2889.675 18.151996207846953 +2899.535 18.20174030947694 +2907.549 18.24221511557772 +2909.829 18.25370964993414 +2910.414 18.256028086356462 +2918.131 18.28727514330614 +2959.577 18.45467381623671 +2969.514 18.50179752451565 +2978.354 18.543053399042495 +2989.542 18.58143558442525 +3001.414 18.661593556570395 +3003.586 18.66914715743964 +3029.248 18.756637810725994 +3033.709 18.771677844710332 +3049.301 18.854905938723885 +3065.006 18.907910342351325 +3080.68 18.958887532369026 +3091.851 18.99588529032567 +3096.071 19.066000821301074 +3111.127 19.115248691067944 +3132.254 19.183018764028077 +3142.516 19.21514555113762 +3165.893 19.28984811065329 +3192.653 19.387493355978613 +3207.733 19.442616432830942 +3215.641 19.471553052761973 +3216.337 19.473848297754373 +3218.532 19.480946964683874 +3235.033 19.534460667258347 +3244.354 19.614439726750906 +3271.242 19.701568057711413 +3281.965 19.73557281150894 +3342.015 19.927797181106108 +3351.886 19.958821505320454 +3371.635 20.02145226216774 +3374.975 20.03199178700834 +3377.574 20.039620334698835 +3392.168 20.08336971829192 +3393.92 20.088592380363117 +3409.998 20.137894353752667 +3451.661 20.263048469173565 +3496.785 20.40517973720851 +3509.186 20.444235962464226 +3533.192 20.52023876523144 +3537.734 20.534299963645182 +3538.671 20.53719858319981 +3542.774 20.55008525639262 +3554.901 20.62121586411382 +3554.96 20.621422460151415 +3555.516 20.623429186410124 +3561.605 20.6718394147049 +3588.102 20.766386032984876 +3656.94 20.99164909755761 +3661.916 21.007594990853324 +3680.968 21.069747682074937 +3683.166 21.08632956589585 +3686.728 21.112857356393036 +3690.289 21.139256757980114 +3693.899 21.14952523230077 +3694.335 21.206579175816465 +3711.406 21.253546002568765 +3717.694 21.27113380221925 +3724.714 21.2907693730438 +3806.612 21.50812114421801 +3828.851 21.564424256810486 +3837.112 21.585630871552862 +3848.98 21.615751200829656 +3849.036 21.615904314849406 +3851.174 21.62326693065073 +3862.853 21.672356682370136 +3872.253 21.74470127328575 +3874.902 21.76395043273901 +3879.306 21.782234492567333 +3887.39 21.815865244462934 +3898.784 21.864624097929468 +3916.341 21.928314465990134 +3921.713 21.94614172629868 +3976.308 22.104274370125776 +3977.277 22.108011440864967 +3981.779 22.125509029182247 +3992.602 22.207654325359258 +3994.313 22.21366803210818 +4006.455 22.25649057395023 +4010.1 22.269319923925966 +4019.858 22.32517264362373 +4021.303 22.328803363780285 +4053.491 22.40883764088623 +4057.443 22.418422804305777 +4091.409 22.49992672772914 +4112.03 22.552375386089317 +4143.328 22.63136989216501 +4153.265 22.67588939134955 +4154.05 22.679427145224206 +4156.116 22.684729565922247 +4172.89 22.740400360316613 +4178.711 22.79418777107313 +4184.552 22.813307312803413 +4200.204 22.893452786334358 +4202.373 22.90296147777223 +4207.124 22.923853175805682 +4218.765 22.953763591052663 +4238.232 23.004249771314043 +4260.932 23.088125756940283 +4270.982 23.113142477450666 +4283.844 23.145201539963693 +4289.877 23.160153334632597 +4343.736 23.290597627930666 +4350.091 23.32082893093409 +4350.622 23.323349556874245 +4350.83 23.324336782531866 +4355.506 23.34654674981665 +4358.214 23.353008897428712 +4428.253 23.519832650452642 +4428.863 23.521277529992766 +4438.018 23.54867558824284 +4453.282 23.594906592262085 +4463.153 23.625196611040888 +4490.549 23.71309038776399 +4494.163 23.721950729974864 +4496.817 23.728245400245168 +4506.337 23.749722054854264 +4513.208 23.76510728411652 +4514.746 23.773735867608885 +4522.179 23.820929219999098 +4540.339 23.903500252611707 +4556.767 23.952793305330637 +4567.704 24.012841720729668 +4586.232 24.05530936787136 +4588.408 24.06017066889605 +4591.784 24.07256093958134 +4601.171 24.10656076230975 +4622.25 24.169548066707332 +4623.143 24.171438890429577 +4634.406 24.216780003192447 +4646.13 24.263443319332616 +4648.927 24.269382092561784 +4649.07 24.270336922311433 +4656.492 24.32469785850104 +4673.949 24.37367343480817 +4684.205 24.4024603264275 +4693.158 24.432922047162197 +4722.688 24.51488864777774 +4726.427 24.525382264698294 +4741.511 24.56953466773931 +4755.908 24.611413480080447 +4760.717 24.62552443244102 +4770.676 24.665878054886388 +4772.065 24.671492297954003 +4802.507 24.73577566502286 +4814.115 24.769921918449754 +4817.06 24.778707597807472 +4824.321 24.8002088819161 +4832.129 24.816360921772876 +4860.54 24.874258237109025 +4882.826 24.94904565326496 +4891.931 24.985516702200144 +4899.774 24.999944644781735 +4921.468 25.03865940822645 +4924.576 25.044046554149624 +4931.017 25.05541930861888 +4960.598 25.120957203628823 +4972.048 25.16840029706439 +4972.379 25.169569630764887 +4975.074 25.18218721375483 +4983.323 25.203808127513195 +4992.342 25.217005497328817 +5001.436 25.230595124303694 +5038.359 25.306226187711864 +5046.701 25.337730089444698 +5053.705 25.354309986247745 +5067.72 25.402515718639105 +5069.362 25.409077674244337 +5069.47 25.409511168017684 +5071.559 25.41811078486201 +5079.908 25.457902675094754 +5082.642 25.471305950178177 +5087.632 25.487251931587714 +5090.991 25.50348819334218 +5097.068 25.532560070133798 +5101.935 25.551587455912113 +5114.078 25.59787084467992 +5116.373 25.6052733665623 +5126.807 25.64436874815097 +5132.117 25.657854798474574 +5133.877 25.663541158341804 +5141.932 25.70156699964379 +5146.307 25.722455185292535 +5150.565 25.74996781875327 +5151.754 25.75764360696259 +5154.11 25.770699135800463 +5160.783 25.801433320584586 +5173.421 25.837997528130437 +5187.86 25.87924689972276 +5194.991 25.89416681104227 +5201.43 25.909123816606154 +5205.795 25.921372734329907 +5210.509 25.93456284201698 +5217.817 25.952384566473906 +5224.404 25.968071128850468 +5227.338 25.975277665045937 +5232.998 25.99402286093438 +5245.577 26.036363648579098 +5248.912 26.045257585249942 +5253.922 26.05699541106408 +5275.4 26.10679296581857 +5282.741 26.12527783674777 +5291.983 26.160428249227508 +5293.641 26.166434039095307 +5304.067 26.19344000524937 +5309.517 26.207385324163187 +5313.37 26.216924880612076 +5313.632 26.217796240949443 +5322.535 26.253808571932773 +5324.409 26.26021800647523 +5338.584 26.284941986983064 +5346.812 26.296839203954576 +5360.551 26.316273162962958 +5369.477 26.334069844082016 +5370.547 26.33633814834303 +5377.309 26.35084550308406 +5386.284 26.368675101667996 +5417.762 26.394944410068902 +5427.554 26.465317400123567 +5446.863 26.49746303079904 +5457.719 26.523010350483098 +5471.939 26.54927541057674 +5474.048 26.55320169670489 +5513.029 26.587311549986836 +5515.654 26.589585578717088 +5632.084 26.692817562781745 +5636.664 26.696952638130615 +5641.258 26.718802859671914 +5645.367 26.72893301681772 +5646.442 26.731546838422727 +5652.391 26.74939663169802 +5688.742 26.8019824448251 +5696.206 26.80948630453998 +5715.511 26.846031497472527 +5785.218 26.918371987426156 +5791.72 26.948624998900122 +5797.875 26.961493335708653 +5802.42 26.97308556879294 +5813.174 26.999856408571716 +5816.859 27.00504044326125 +5841.217 27.039388128587877 +5845.119 27.04319680111893 +5862.178 27.078073858484156 +5866.146 27.097992277995374 +5870.228 27.116627415247383 +5870.637 27.117533652445033 +5880.982 27.140560654903442 +5884.985 27.156541632483577 +5885.509 27.159101931779148 +5895.19 27.17569541218627 +5952.886 27.2225653723444 +5956.083 27.23511040360752 +5975.13 27.25006698907853 +5977.857 27.253523083527746 +6018.441 27.31608150057857 +6020.638 27.318345009681067 +6025.727 27.323637122810997 +6038.065 27.347954537651486 +6124.097 27.40405416520772 +6132.887 27.420084358263182 +6167.952 27.442711626117816 +6179.347 27.450204096796217 +6296.871 27.53233827025742 +6311.406 27.542346688762777 +6322.801 27.548535464511776 +6365.033 27.570862960881133 +6470.88 27.63711715281226 +6484.038 27.645549545080666 +6492.675 27.65049669836175 +6502.356 27.662869126045816 +6507.014 27.669096388825672 +6515.42 27.685469454608715 +6526.319 27.703848228210454 +6552.39 27.73172294101476 +6590.272 27.769547072415335 +6605.746 27.780462645053003 +6629.556 27.79785364091592 +6639.831 27.805255625243447 +6650.361 27.82080839190714 +6660.806 27.83636722047494 +6675.234 27.84605870069697 +6685.086 27.868971761841095 +6685.574 27.870107729461456 +6690.493 27.888128151202565 +6727.691 27.916171456632842 +6730.727 27.918347398179534 +6750.911 27.944642637565394 +6790.446 27.98157723657078 +6796.795 27.98753363284179 +6816.926 28.001862692550475 +6833.953 28.023187909865644 +6852.171 28.04555664677123 +6856.71 28.04869713191777 +6874.447 28.060991212149073 +6918.572 28.09147289425434 +6942.033 28.111000730654393 +6965.884 28.130544109895233 +6981.866 28.155543938218372 +6990.753 28.164793316601717 +6995.625 28.170770333508862 +7011.989 28.197559470741044 +7017.103 28.206050901083866 +7019.249 28.208736476740903 +7022.002 28.21865918556165 +7028.829 28.22713221971097 +7044.613 28.24340796918534 +7053.385 28.2528557520038 +7109.354 28.311781544161075 +7138.876 28.343528984302466 +7153.69 28.3744813949033 +7155.544 28.380409843030016 +7160.043 28.402028193283044 +7161.645 28.41089614262139 +7163.109 28.4173719626097 +7167.089 28.435955587925363 +7167.749 28.43938940413956 +7169.715 28.449600240296732 +7171.579 28.455742299952654 +7188.566 28.479837649787967 +7191.231 28.485202264873863 +7199.117 28.504409922981342 +7210.337 28.518762861307298 +7214.91 28.522704574043196 +7254.816 28.57520026337662 +7257.477 28.577444292277733 +7298.854 28.630617257809167 +7305.275 28.638698345130916 +7323.39 28.670502689681435 +7342.463 28.693288060691298 +7342.942 28.69385991835882 +7352.119 28.700929798663246 +7354.622 28.70390510182427 +7364.54 28.716997596121374 +7369.248 28.728919726817928 +7372.806 28.736223965827246 +7382.693 28.754767806888506 +7403.698 28.782604670415726 +7415.722 28.797943886780313 +7424.331 28.81557967653909 +7426.358 28.819499562440342 +7437.443 28.83623222320134 +7497.926 28.88140826557858 +7516.04 28.909456986546406 +7519.752 28.915240202212814 +7535.869 28.934337688850537 +7557.869 28.963781236247808 +7567.597 28.98049293073748 +7572.208 28.98829094983333 +7574.332 28.993760809564744 +7575.37 28.997213340483327 +7590.397 29.03429517791414 +7593.061 29.03885180901507 +7593.983 29.040379593898997 +7603.406 29.066161183370202 +7615.605 29.094348554713683 +7626.327 29.119996244997203 +7659.88 29.158224148456117 +7669.767 29.176143078098978 +7671.102 29.178048558575476 +7682.652 29.206993219299257 +7684.216 29.209896425427036 +7691.259 29.225847448842153 +7704.073 29.25060867553245 +7720.953 29.269797919186992 +7729.27 29.282878652958587 +7734.675 29.295128238488342 +7739.757 29.312437478524217 +7742.482 29.319370740041148 +7750.327 29.3337463033707 +7757.869 29.351200795997052 +7762.666 29.362376980794018 +7763.062 29.363150554432323 +7768.936 29.368287161969825 +7788.922 29.398862055620523 +7811.896 29.431021877527243 +7850.796 29.465366295431814 +7873.113 29.491577528113194 +7879.873 29.497152920963558 +7892.087 29.51517519359014 +7898.886 29.52757738640797 +7900.93 29.532676262247477 +7914.465 29.55910961067819 +7916.85 29.56333800422982 +7920.775 29.570012894111464 +7930.556 29.585565691473008 +7937.444 29.59701841912577 +7961.428 29.62246473807281 +7965.796 29.6290162939203 +7972.67 29.640981876721312 +7973.295 29.64198796585409 +7986.596 29.67019176331318 +7992.973 29.681393495332074 +8009.884 29.712560567477013 +8010.78 29.714005461594233 +8022.233 29.727664699601632 +8034.531 29.743307698223376 +8046.169 29.758051434778224 +8049.392 29.76190018933202 +8060.35 29.77273831039242 +8082.164 29.804112237196485 +8084.616 29.806334140270128 +8085.469 29.807112346165606 +8104.195 29.838735956091032 +8127.518 29.866307093315115 +8148.97 29.88962736973469 +8150.959 29.892546295042077 +8167.252 29.91633493152771 +8170.144 29.920544833371018 +8170.169 29.920601128797117 +8178.41 29.945158568256986 +8180.526 29.94985341087747 +8185.505 29.95347234197222 +8198.646 29.969160225235264 +8202.773 29.972807749829013 +8219.369 29.994585230204663 +8220.853 29.996525328069733 +8230.016 30.004532821391862 +8271.384 30.033622626292924 +8303.164 30.056027092880804 +8310.706 30.061413153880387 +8319.724 30.083314120764864 +8330.478 30.104072452534815 +8344.179 30.12386513256825 +8345.297 30.125496444294804 +8367.583 30.142457915017854 +8380.179 30.163982549913328 +8399.105 30.18011945132061 +8402.03 30.1833547420715 +8405.695 30.19384051936564 +8416.362 30.212019249865484 +8416.491 30.212201552921872 +8420.574 30.220772970767598 +8425.2 30.232289969428184 +8428.84 30.241074380114792 +8436.44 30.255288265455768 +8437.04 30.256793507473958 +8445.421 30.275230643026607 +8446.97 30.278605541757933 +8453.59 30.2841603976878 +8454.071 30.28502059321862 +8464.897 30.304075129059836 +8474.021 30.310317988943577 +8496.191 30.328396232846348 +8513.964 30.3440348921677 +8533.637 30.360589085091664 +8554.741 30.377980902754953 +8568.83 30.38976891610435 +8574.974 30.394423948452925 +8585.728 30.405030076946517 +8595.445 30.41425178298064 +8597.483 30.416205143110933 +8602.721 30.421853928873116 +8606.73 30.428800448134798 +8614.442 30.43969993845507 +8619.632 30.453246810786894 +8625.48 30.46464521833269 +8625.891 30.465450475931846 +8627.17 30.466780257399655 +8635.467 30.478448886491304 +8642.274 30.48636258026879 +8648.326 30.496331529758397 +8663.995 30.516295163715238 +8670.666 30.52156643343378 +8678.932 30.53933599769597 +8697.311 30.56197357249853 +8715.084 30.584406948546366 +8726.314 30.60337513457575 +8731.6 30.612356099779593 +8737.284 30.621940255789735 +8747.641 30.640245318126127 +8759.14 30.659400288781953 +8761.353 30.663048412923917 +8770.778 30.67842662120533 +8777.345 30.685805312315026 +8790.514 30.709430305282996 +8793.435 30.72025207360647 +8795.494 30.728136588118886 +8797.414 30.733161562536697 +8804.664 30.752424189811027 +8806.198 30.757503108196115 +8810.756 30.768956356436256 +8820.89 30.786888130512335 +8833.381 30.796409376248896 +8862.137 30.818524892378555 +8876.162 30.829656022838964 +8893.867 30.843092216039736 +8899.838 30.850571320541853 +8905.862 30.8600227157705 +8915.377 30.876178468729304 +8919.695 30.88272792126891 +8927.456 30.895242565164082 +8936.779 30.9065875746755 +8940.302 30.910420342581915 +8954.761 30.926412090817532 +8963.399 30.93714649733406 +8969.587 30.94488753841022 +8991.807 30.961496784970993 +8998.446 30.970436148331373 +9009.739 30.988190063862962 +9011.528 30.99151580739509 +9013.675 30.995421573186523 +9016.849 31.003868909914047 +9021.721 31.015924451758703 +9023.562 31.018873064235226 +9042.904 31.0384278985511 +9064.807 31.05179598601189 +9079.121 31.064443563241582 +9108.65 31.07967368401308 +9110.663 31.081622108405433 +9123.691 31.094009598776285 +9131.108 31.10437185691285 +9141.958 31.11450953592205 +9158.154 31.12153354650499 +9163.844 31.134182484578762 +9175.996 31.139168262409246 +9181.465 31.148900356164646 +9191.287 31.160838625932644 +9194.768 31.163060031547477 +9211.827 31.184156320100442 +9228.977 31.20344449507514 +9233.135 31.210813662628134 +9238.127 31.223214807524023 +9241.057 31.228064421191302 +9247.496 31.238018047444502 +9249.199 31.241416891762064 +9258.046 31.258728345040293 +9267.545 31.274865213511816 +9279.81 31.29545617608731 +9281.138 31.297378399359722 +9289.298 31.309130267567006 +9299.654 31.334268852926463 +9347.021 31.402605980763422 +9393.396 31.47028440166912 +9408.625 31.50042388963756 +9416.28 31.511638100430737 +9425.99 31.51934590786809 +9429.616 31.522208661267346 +9442.096 31.53521274345943 +9464.907 31.558770777986442 +9501.791 31.595566106907693 +9502.347 31.596396628856876 +9521.765 31.62524929668736 +9540.006 31.64196509791125 +9541.822 31.643619677540503 +9555 31.661776621122037 +9577.17 31.681490006714057 +9581.924 31.68504612320367 +9597.424 31.69663948834805 +9602.399 31.70408513433368 +9607.22 31.71378645100736 +9612.945 31.728917637890635 +9619.991 31.74260990352984 +9623.466 31.750091776154292 +9632.587 31.76173386250807 +9648.6 31.779483776806632 +9663.637 31.787700594517617 +9675.333 31.79341192826866 +9684.711 31.804805722064728 +9692.977 31.815519012098587 +9704.06 31.827638353757298 +9725.838 31.84479909615364 +9730.844 31.850432750594482 +9736.505 31.858515192098114 +9739.078 31.860417393072794 +9764.672 31.87230123780792 +9774.694 31.879784038437183 +9792.055 31.899879073166044 +9793.453 31.901447526755916 +9802.921 31.91055929702759 +9806.245 31.91225901565678 +9821.792 31.92646268141398 +9827.39 31.93199297667027 +9844.231 31.943205221020126 +9900.214 31.959256567096386 +9900.801 31.959877657546187 +9905.683 31.968201616122517 +9912.84 31.977951125113204 +9915.935 31.97992365434825 +9934.599 31.988398063726645 +9966.836 31.995965149056506 +9973.225 31.999272662553665 +9987.719 32.004458238836364 +9990.543 32.00647844396991 +10058.272 32.0222076957666 +10102.899 32.039711682583686 +10105.253 32.041531065431485 +10118.753 32.05308402640997 +10126.341 32.055514951362234 +10128.931 32.05715926609695 +10130.329 32.05936480975293 +10141.084 32.07415137244952 +10141.955 32.07459878571323 +10149.341 32.07750683380422 +10268.081 32.11083740404787 +10279.264 32.115745119254896 +10300.604 32.1233558775653 +10314.347 32.128871594074774 +10391.986 32.14725061857089 +10411.664 32.168305764241246 +10421.989 32.1853319855894 +10422.634 32.186398305281486 +10444.412 32.20862194447063 +10452.403 32.22523372309082 +10457.107 32.22696243501168 +10465.456 32.22964952206119 +10480.61 32.23454331651581 +10489.819 32.245447051147316 +10553.43 32.27457474893686 +10575.223 32.28578516687761 +10583.229 32.29092327001121 +10597.009 32.29830935684161 +10597.422 32.298597605252496 +10617.702 32.31271862051803 +10618.165 32.31303937412674 +10620.948 32.31504461251435 +10636.669 32.32630864640893 +10644.613 32.335432938368164 +10663.359 32.34560351255068 +10677.541 32.35389252716625 +10678.398 32.35442855929168 +10685.599 32.359847449757524 +10697.484 32.36839225576783 +10698.29 32.3689163605504 +10750.57 32.38725651627677 +10767.481 32.4070639907005 +10775.7 32.409112746751624 +10780.591 32.41034778904844 +10840.797 32.43198900603806 +10859.617 32.43940909030143 +10862.655 32.44060564575062 +10874.59 32.445635117483214 +10886.115 32.4497893798373 +10890.234 32.45130538996302 +10927.147 32.46992494543897 +10941.866 32.47742010084354 +10974.672 32.49437322506532 +10976.187 32.49515001193471 +11011.391 32.51105234325402 +11021.543 32.5160940219639 +11067.721 32.539257406814116 +11094.247 32.552176199967526 +11105.015 32.57180956809756 +11109.737 32.57405931440229 +11123.501 32.5805999073564 +11153.366 32.594769142917606 +11169.6 32.6025883488775 +11178.676 32.61302910842693 +11195.477 32.627211936932284 +11205.729 32.63814579822804 +11228.611 32.64850325432826 +11238.336 32.66070515953665 +11249.192 32.673246088508414 +11267.631 32.681521451314104 +11273.341 32.68811552737324 +11277.099 32.69974709637888 +11277.84 32.70204141032387 +11278.614 32.704814777086064 +11288.644 32.72125961819058 +11288.696 32.721342179342884 +11309.209 32.74795870580988 +11310.98 32.74950201202228 +11347.804 32.773483928028796 +11365 32.787592111349134 +11365.436 32.79056170585635 +11373.568 32.797415864343485 +11403.086 32.809485840882886 +11403.86 32.80980951212891 +11406.141 32.81377323510097 +11415.359 32.835431347751 +11417.448 32.8405545591248 +11426.018 32.85630715837801 +11426.508 32.85677126334612 +11437.136 32.877345929349545 +11443.503 32.888992065276035 +11449.2 32.899590435428905 +11454.033 32.910696554195 +11455.657 32.914361409859914 +11456.716 32.91687840444347 +11457.004 32.91772671513087 +11464.548 32.92996941127115 +11478.229 32.944322469039996 +11505.263 32.95767921813254 +11520.325 32.96509396216532 +11530.433 32.97628643735073 +11553.744 32.988358211226995 +11563.274 33.00515732068416 +11573.302 33.010524528632466 +11590.232 33.01948628901295 +11615.304 33.032733873436854 +11617.056 33.03365906643776 +11622.925 33.03789389346494 +11640.021 33.049802266021956 +11654.351 33.058547165900535 +11677.681 33.07278413295896 +11688.135 33.07807741442605 +11697.188 33.08878595866043 +11706.987 33.09945636822172 +11716.004 33.10917834210818 +11717.067 33.11131468648452 +11725.188 33.128686025368566 +11729.113 33.13431580327694 +11746.433 33.142742209964496 +11757.551 33.14822836829327 +11763.48 33.15355635912264 +11780.009 33.16841209561399 +11805.106 33.18070933149904 +11806.102 33.181194753529795 +11816.242 33.19875374466723 +11817.49 33.20218251714386 +11820.455 33.21045119175256 +11828.02 33.22504266296918 +11837.082 33.244543339075506 +11846.219 33.25621814538851 +11859.366 33.27088242631599 +11878.934 33.28059800975179 +11890.019 33.29831733431451 +11894.083 33.30597277870755 +11895.417 33.306968179056156 +11905.851 33.32164928356256 +11924.901 33.33575972093754 +11925.286 33.336044844952546 +11930.412 33.34309827789999 +11933.038 33.34689524484806 +11937.158 33.35598118090342 +11937.99 33.3581871765792 +11945.248 33.372144737137155 +11954.733 33.38804230803814 +11963.821 33.39489114104634 +11973.902 33.40570483370962 +11997.033 33.42313712251547 +12001.203 33.42963791197932 +12006.305 33.43760704857378 +12010.611 33.43998322758624 +12016.666 33.44282807821698 +12050.956 33.47141990896902 +12066.869 33.47886493922891 +12073.172 33.48201894646152 +12077.114 33.484760956361015 +12081.225 33.48748393013209 +12090.375 33.497016825793445 +12107.712 33.51128258706247 +12111.363 33.513605972677595 +12123.15 33.522574837288154 +12126.614 33.52486747160542 +12131.326 33.530900387567534 +12140.904 33.53994090008759 +12141.449 33.54039268866363 +12142.985 33.541587284032424 +12152.745 33.549114282297296 +12163.605 33.55490320181835 +12180.186 33.56368783718479 +12185.42 33.567165497884254 +12195.419 33.582189834761465 +12196.406 33.583449370219434 +12203.636 33.5953323117146 +12210.189 33.598127341701996 +12238.939 33.60803364481925 +12250.186 33.61217945102567 +12251.513 33.612658139780315 +12251.956 33.6130218097034 +12269.015 33.61906078978794 +12294.674 33.62796933512888 +12295.047 33.62810109629456 +12309.033 33.632584670354426 +12311.297 33.6339966428413 +12313.497 33.635332409103086 +12317.179 33.63761888206362 +12319.579 33.64058842901608 +12330.932 33.646649943446796 +12351.233 33.65547978627709 +12368.404 33.663304498599466 +12378.527 33.66889950488817 +12383.593 33.67238688827703 +12384.616 33.673104412588685 +12409.038 33.68340974928457 +12414.384 33.68628145203301 +12419.328 33.68888511715463 +12432.891 33.694877213234 +12435.483 33.69802176213395 +12443.645 33.707867799786044 +12444.712 33.70911763838996 +12452.395 33.718131214945004 +12454.315 33.720356933340796 +12463.477 33.73193473876884 +12470.957 33.73812363622065 +12481.637 33.745817973877585 +12488.269 33.75193747788939 +12494.029 33.76095350435364 +12497.403 33.76621100866292 +12506.088 33.77443892386992 +12513.932 33.783505992759906 +12515.238 33.78502849344823 +12517.06 33.78669623968851 +12523.146 33.79226860325975 +12528.34 33.79698335882392 +12532.485 33.801487956637736 +12537.486 33.806857717067345 +12571.82 33.82323257055313 +12583.77 33.82689967534051 +12594.737 33.83620462212697 +12595.173 33.840540682602835 +12624.491 33.8552456445133 +12634.826 33.86398410386283 +12643.915 33.86679942463976 +12660.623 33.871991293160754 +12670.375 33.88046839994355 +12675.392 33.88193205827435 +12711.017 33.892024247859155 +12729.097 33.90347214895998 +12736.99 33.91134386433143 +12737.363 33.91171769451054 +12764.473 33.91925058095182 +12774.47 33.93536495961971 +12777.619 33.93958851992689 +12778.427 33.94067115303414 +12786.808 33.952024691379584 +12789.29 33.95363803156821 +12795.097 33.95729774441726 +12806.623 33.96634613306699 +12818.508 33.975616779797086 +12821.815 33.977753699119376 +12826.343 33.9811601594348 +12836.101 33.99773105773995 +12850.232 34.00428001590845 +12851.267 34.00496877328455 +12859.682 34.01601570380104 +12862.35 34.01942717474038 +12870.349 34.024844139757036 +12889.871 34.034250800090796 +12890.094 34.03439674943914 +12894.303 34.0387636702893 +12906.548 34.047605355453165 +12915.044 34.05321156664351 +12920.73 34.05713022514121 +12920.919 34.057377757318626 +12928.087 34.065498990359934 +12929.913 34.06731593433205 +12936.95 34.0745434779301 +12940.443 34.07802913989907 +12946.386 34.08330040591732 +12948.503 34.08485450564934 +12958.724 34.09791578698118 +12959.675 34.09882730280237 +12964.693 34.10222953867439 +12978.022 34.113165418864554 +12980.367 34.11547343590327 +12985.587 34.119054633979964 +12992.19 34.122244270419976 +12993.795 34.12509356560273 +13001.626 34.139190672571466 +13002.029 34.1398537054237 +13005.53 34.14552814750661 +13012.161 34.15976686426095 +13013.298 34.16207420314911 +13022.697 34.17905646085631 +13025.183 34.183953669024646 +13029.694 34.19207765659255 +13031.668 34.19562306015223 +13044.461 34.20317534620391 +13054.991 34.2115766055303 +13078.632 34.219218768082385 +13088.629 34.25409494678911 +13099.098 34.26360965178658 +13102.562 34.265498033818865 +13108.82 34.2743541908804 +13123.52 34.28221322107219 +13125.878 34.28329503027898 +13133.443 34.29053977545624 +13150.866 34.29849699492948 +13157.537 34.301566884821995 +13161.757 34.30776259480197 +13162.328 34.307936481350936 +13179.378 34.31372811498469 +13190.9 34.31763583389059 +13199.14 34.32045528741354 +13200.861 34.32274762574397 +13206.388 34.33132887311197 +13209.209 34.33543414367539 +13210.2 34.33589114109941 +13215.183 34.33815252862707 +13229 34.343276763661414 +13232.107 34.345064906187524 +13233.487 34.345852149116546 +13244.87 34.35792080204669 +13249.356 34.360394862383984 +13250.826 34.3610942311117 +13294.441 34.37179880827499 +13310.506 34.379094485506926 +13330.147 34.38398365683807 +13335.766 34.385830597855076 +13345.172 34.39391251901335 +13349.913 34.40027186754733 +13360.485 34.40838028957272 +13361.076 34.408917778299305 +13368.226 34.41484961216526 +13376.29 34.42074570453996 +13377.649 34.42227328176172 +13384.209 34.427971269234476 +13397.546 34.43959040235595 +13397.782 34.43979189890381 +13418.502 34.449169404795214 +13419.13 34.44945890556536 +13424.889 34.45089428044286 +13426.944 34.451418417157385 +13450.059 34.45705660775734 +13456.665 34.461594225945554 +13508.535 34.47375788499503 +13517.669 34.47839322036126 +13529.39 34.480943933251254 +13545.9 34.485842918907224 +13556.882 34.48946621106971 +13567.168 34.491745258066025 +13567.471 34.49194573063848 +13579.734 34.50005482335613 +13584.487 34.50412776706278 +13586.32 34.50572172570254 +13602.78 34.51920531325732 +13607.634 34.52344009308307 +13621.023 34.52993578203904 +13630.842 34.53599141181564 +13632.573 34.537064582414104 +13705.209 34.554235038600424 +13710.861 34.555701700770754 +13728.453 34.565907882347226 +13735.352 34.57343408895136 +13735.93 34.57357752095891 +13746.358 34.5761606002035 +13757.654 34.57977025113349 +13768.632 34.582821748078466 +13777.435 34.584814361786975 +13781.129 34.585443279744226 +13805.704 34.58958059875705 +13818.279 34.5917256307776 +13824.031 34.597171057204065 +13843.005 34.60461248140602 +13889.787 34.61331268607469 +13944.617 34.623542874233344 +13968.467 34.627951185325145 +13970.002 34.628244911676326 +13970.639 34.62849846786358 +13982.265 34.63417565728688 +13982.663 34.634335226031745 +14031.137 34.645734058006596 +14034.708 34.64779002175505 +14041.891 34.651945199585555 +14045.491 34.65319715476149 +14065.281 34.66185748940273 +14073.571 34.664498616849414 +14083.64 34.670198947002014 +14093.06 34.675442051435226 +14105.452 34.68004979104378 +14111.698 34.68543940145968 +14112.969 34.687915371136256 +14114.326 34.690538323195234 +14114.601 34.69105374775026 +14119.84 34.70133953811406 +14124.297 34.706739186298186 +14125.323 34.70753152956884 +14128.444 34.71034464637071 +14129.407 34.71099385100017 +14134.461 34.71359180199878 +14145.219 34.71956840804526 +14151.48 34.72263054557433 +14155.2 34.724368583934634 +14170.634 34.73002697278258 +14172.814 34.73128078508405 +14178.506 34.734529573022705 +14225.885 34.743478576782586 +14281.498 34.75408101356883 +14293.306 34.75646853652636 +14314.385 34.763511805441574 +14322.455 34.767102099752826 +14325.996 34.76868665301649 +14367.255 34.77716807090482 +14373.137 34.7783210627385 +14373.726 34.778484460236584 +14381.992 34.789911991362395 +14398.145 34.79861101056297 +14405.939 34.806872176954165 +14415.411 34.816071694165494 +14419.682 34.81831166880879 +14426.689 34.82098061134501 +14452.108 34.830665552302854 +14463.289 34.83410618873563 +14473.176 34.8423133415016 +14501.091 34.85083335324462 +14506.172 34.85602042101102 +14512.149 34.862085001493 +14578.816 34.875586799952366 +14609.26 34.88181028969921 +14617.526 34.88855268822054 +14631.342 34.89180521443487 +14632.038 34.89196843786379 +14639.987 34.89608189388886 +14647.016 34.897901597405806 +14671.12 34.90838333700816 +14678.269 34.91162722546231 +14692.506 34.91804159828021 +14695.017 34.91947237533796 +14704.293 34.924408730004046 +14717.56 34.92768308373398 +14729.124 34.93031713604832 +14782.235 34.94137021686759 +14784.062 34.941750378455815 +14800.851 34.94496994126578 +14821.445 34.957653662428214 +14835.29 34.96057148477045 +14840.995 34.96268190512655 +14841.108 34.96270554982211 +14848.366 34.96419456189247 +14857.185 34.96884765243974 +14863.176 34.97213353086408 +14865.332 34.97402140428917 +14871.442 34.97872242742222 +14876.637 34.98102883045554 +14882.254 34.98376523905418 +14885.138 34.98563073611772 +14892.789 34.98971476031889 +14897.997 34.992093340810044 +14912.182 34.99607000721951 +14925.389 35.00025104164229 +14935.276 35.00363495976322 +14997.32 35.01487412786137 +14999.251 35.01514157297399 +15032.754 35.02399563821548 +15038.914 35.02474445749689 +15040.757 35.024967541854004 +15044.041 35.02631041256539 +15048.525 35.02822164810405 +15139.608 35.03932858370596 +15147.476 35.040415727331805 +15190.916 35.04642766897061 +15211.462 35.05245351262176 +15212.303 35.052865662715185 +15224.507 35.05658791322739 +15278.195 35.062307679713015 +15310.286 35.068233523143405 +15311.03 35.068370828862335 +15315.42 35.070441818266026 +15318.598 35.0728137764914 +15331.51 35.07769876347633 +15402.979 35.08643233038121 +15462.525 35.09387694406902 +15464.201 35.09409275614925 +15465.3 35.0943805042094 +15471.917 35.09589381395679 +15484.246 35.0986692922915 +15506.024 35.10330556604335 +15558.041 35.10734227550439 +15563.645 35.107776331270884 +15591.506 35.109926965091375 +15609.909 35.11965906471901 +15618.836 35.128192316636 +15642.711 35.13006134811391 +15713.17 35.136225544397476 +15736.193 35.13819572557013 +15741.694 35.138694441777936 +15776.028 35.14165544361002 +15802.246 35.14392126926471 +15803.481 35.14404052149408 +15811.196 35.14480280344895 +15840.906 35.14766151159933 +15854.291 35.14894100683278 +15875.786 35.15277719331217 +15878.713 35.15363037435467 +15897.129 35.158665148882996 +15908.352 35.161596143451106 +15918.302 35.16398003655985 +15937.867 35.16879984716682 +15945.154 35.17065316170661 +15953.053 35.17312719054119 +15956.085 35.17486304039905 +15961.262 35.17856831486444 +15961.818 35.17899099563511 +15964.211 35.18018511324538 +15971.792 35.18199855395512 +16057.772 35.18935531941039 +16107.408 35.19361794325077 +16110.927 35.19391950863605 +16116.089 35.195192942580185 +16123.647 35.197459590921 +16146.492 35.20248001482733 +16153.705 35.2042005104788 +16165.189 35.2081373285958 +16166.23 35.20910842805076 +16167.678 35.21021568581821 +16168.746 35.2103856193269 +16174.78 35.21586910382137 +16179.401 35.22295004271712 +16181.515 35.22567086810035 +16188.757 35.23043007124739 +16195.602 35.23504155153281 +16196.908 35.23530820073238 +16206.026 35.237174616450424 +16219.663 35.23855103536314 +16219.692 35.23855394362782 +16239.857 35.244093391198895 +16260.536 35.246699516091105 +16270.769 35.24960580229159 +16292.939 35.25404728957677 +16302.084 35.25674216127329 +16314.289 35.25977170942986 +16356.477 35.264833191036054 +16364.743 35.26756597373392 +16374.654 35.270510372057004 +16375.778 35.27069702973527 +16376.73 35.271552128137415 +16378.094 35.27286145723349 +16385.184 35.2796670338117 +16403.959 35.290942161965035 +16408.44 35.29326838832231 +16416.295 35.298237376990244 +16418.97 35.299923682094374 +16426.432 35.30342126648525 +16437.815 35.31103452080154 +16453.88 35.31935251727028 +16456.283 35.319722194878146 +16456.965 35.319831285280536 +16582.375 35.328792190148015 +16600.275 35.329830164343925 +16627.095 35.3313839344862 +16646.818 35.334418712904196 +16711.282 35.338089711884585 +16722.63 35.34460859427036 +16741.838 35.35150720240996 +16751.725 35.35782221609613 +16825.464 35.36085715078975 +17052.455 35.36789790546246 +17071.256 35.369426965091876 +17090.005 35.37086976324625 +17138.8 35.37251664212602 +17146.736 35.37278593280334 +17152.825 35.37427664560596 +17202.822 35.37597948472218 +17231.034 35.37694712037742 +17278.882 35.37857121236164 +17287.505 35.38420511101268 +17298.33 35.38974939859153 +17338.666 35.39658001958571 +17349.747 35.4018900294492 +17373.002 35.403308580581154 +17418.276 35.40607112858137 +17428.124 35.40741301181098 +17447.582 35.4085710169379 +17461.244 35.41136536136477 +17490.423 35.41302479366155 +17496.365 35.41336319257756 +17500.984 35.41363829248281 +17548.245 35.41764750251723 +17563.987 35.418985901502836 +17574.588 35.421020398588574 +17574.826 35.421052072338824 +17594.261 35.42363183849468 +17615.761 35.426303193619056 +17634.926 35.427654111809595 +17646.965 35.43288707016651 +17744.74 35.43956657665308 +17756.625 35.44155378852338 +17786.77 35.443252034812 +17844.524 35.448177293657885 +17866.673 35.45007220406852 +17876.169 35.45175173426117 +17899.508 35.45587619167333 +17906.524 35.4604660736477 +17921.923 35.46119474971757 +17962.35 35.46310174649336 +17976.532 35.46443513369222 +17978.898 35.465092999983895 +18055.813 35.46895781096914 +18070.722 35.46970704397118 +18076.811 35.473970381809714 +18117.842 35.4796364128034 +18147.973 35.4802009441087 +18151.354 35.480252131047045 +18553.208 35.4863264303722 +18668.425 35.49132509332655 +18684.628 35.49363738880728 +18703.135 35.496278631710624 +18711.637 35.49969846835455 +18726.645 35.500710898688084 +18793.835 35.50568328466294 +18820.096 35.50795413748615 +18837.516 35.50946095500847 +18845.642 35.5107720268683 +18854.113 35.51200062789742 +18856.133 35.512293539624736 +18856.247 35.51231410662426 +18862.222 35.514980819606905 +18866.134 35.516618342030064 +18867.176 35.51734149974701 +18870.661 35.51975788132576 +18871 35.519808897786156 +18885.038 35.52159447156103 +18926.217 35.52569763746723 +18944.706 35.527861685370205 +18958.605 35.52962616350533 +18967.272 35.530544572668 +18980.792 35.53197219424885 +18986.435 35.5344139723631 +18987.19 35.534502938649354 +18988.003 35.53458261828064 +19012.067 35.53694165069351 +19013.751 35.540296904456476 +19016.021 35.54070226426919 +19017.279 35.540926869390624 +19037.881 35.5467005770038 +19048.291 35.55045130466011 +19049.374 35.55080319491525 +19059.346 35.55310648293052 +19071.612 35.55608493744157 +19083.8 35.560022310344586 +19094.575 35.56364002828342 +19097.287 35.56427445477692 +19113.664 35.570402574803076 +19117.42 35.57105997632805 +19136.678 35.57475153881368 +19144.544 35.57681901350947 +19147.92 35.578073907846395 +19159.634 35.580408044279835 +19169.892 35.58201760052774 +19183.375 35.58416497200549 +19188.689 35.58488293726674 +19209.106 35.58878652981892 +19218.642 35.590964576868984 +19220.991 35.591558783538744 +19222.201 35.59181838898184 +19240.501 35.59577333880688 +19241.342 35.5959419780266 +19265.293 35.60014575367826 +19266.388 35.60036257766602 +19275.134 35.602079418838336 +19281.946 35.604390549013864 +19283.038 35.60468860552195 +19292.207 35.60624208953337 +19300.473 35.60954206652246 +19300.663 35.609573828265425 +19310.292 35.61154896205554 +19312.645 35.612031726988526 +19319.027 35.612516458452795 +19325.444 35.613003610029814 +19335.98 35.61553704545594 +19345.855 35.61627504824867 +19347.378 35.61638896836187 +19352.22 35.616750829265094 +19369.065 35.6180095263005 +19394.323 35.6203651158371 +19413.593 35.622270888122415 +19418.406 35.6230874253619 +19430.586 35.62399301434752 +19445.514 35.62740577831778 +19446.599 35.62765252124883 +19457.268 35.630778227497956 +19466.746 35.63245304075933 +19479.6 35.634938253843856 +19495.758 35.63607099846249 +19518.782 35.63743627073487 +19540.377 35.638716806468096 +19558.309 35.641298402377096 +19565.549 35.64158720650909 +19584.256 35.642771881878154 +19624.531 35.64437157360252 +19679.141 35.64653367760956 +19688.519 35.64690489934314 +19713.179 35.64788110119483 +19725.345 35.64847583736878 +19730.763 35.648745163368375 +19764.9 35.65042510380054 +19793.87 35.651850291602116 +19801.395 35.65219236505181 +19835.729 35.6537528253167 +19844.272 35.65413993000477 +19864.942 35.65507972285049 +19881.848 35.65635625572307 +19895.648 35.65729806130289 +19896.692 35.65732795339955 +19905.891 35.65802102053246 +19914.37 35.658691266116904 +19929.564 35.65912262777527 +19990.965 35.661479619203334 +20031.24 35.663025201521144 +20038.527 35.6649416847754 +20058.126 35.66742430162806 +20065.861 35.667931801669184 +20068.104 35.66807643120441 +20088.063 35.669362596514596 +20094.299 35.67017632575074 +20098.308 35.670436135273036 +20106.093 35.670939330943824 +20115.436 35.67154453803528 +20127.738 35.671998542515254 +20136.547 35.672323110029 +20148.083 35.676756996156755 +20149.416 35.677061911831956 +20167.988 35.6812949815587 +20169.653 35.6816734432416 +20175.345 35.68195243880054 +20186.603 35.68251225419619 +20210.44 35.6841288635726 +20245.871 35.68646084286957 +20266.358 35.68782916908736 +20277.729 35.68992643816108 +20295.492 35.69089793939914 +20352.338 35.69400189945357 +20362.102 35.694534093927395 +20380.167 35.69550284161408 +20387.197 35.69587593831037 +20396.109 35.69634312344566 +20430.035 35.69814613487887 +20444.85 35.70033832259917 +20449.56 35.70093190661287 +20463.41 35.70267940547655 +20487.106 35.70405970792933 +20499.088 35.70835116717954 +20506.468 35.70866226201031 +20548.611 35.710449992443 +20558.498 35.71203471455197 +20564.156 35.71259245667659 +20579.092 35.713973366811906 +20630.115 35.71590355613747 +20639.224 35.71631033020296 +20651.751 35.71686804182504 +20685.471 35.71983193779133 +20689.68 35.72115958273456 +20710.247 35.722181407274675 +20718.872 35.72260323995585 +20745.243 35.72492640707333 +20746.359 35.72509610605488 +20755.583 35.7266865369665 +20765.915 35.72844289072744 +20775.952 35.729400917723744 +20778.695 35.729765050941836 +20786.487 35.73076440916822 +20791.251 35.73119371092596 +20796.845 35.73169014176891 +20799.75 35.73194774655784 +20805.757 35.732313303263645 +20816.999 35.733012702686146 +20821.208 35.733927109883794 +20857.22 35.73550493908923 +20861.664 35.736145002600914 +20867.875 35.73773605389853 +20872.726 35.73847563833486 +20903.562 35.74085429295877 +20949.391 35.74267364088659 +20956.832 35.743459068865256 +20964.461 35.744528128842596 +20968.128 35.7454370387513 +20969.987 35.74583366521813 +20979.859 35.74714916310743 +20980.28 35.7471682056694 +20982.933 35.74728738283741 +21019.972 35.749648773473645 +21023.211 35.74986274866274 +21046.544 35.75139582301733 +21051.735 35.7517389153257 +21055.009 35.75186639493815 +21061.282 35.752328327933405 +21086.529 35.7539931907536 +21100.748 35.755595062095736 +21129.054 35.75729047176057 +21132.506 35.75749650586994 +21136.947 35.75776128135984 +21143.676 35.75878785917544 +21146.112 35.759169145457335 +21185.134 35.760920032795255 +21213.496 35.762185494217746 +21228.315 35.763750662841026 +21230.32 35.76381944407001 +21235.291 35.763989274543604 +21251.566 35.7654488531129 +21257.648 35.76653009913904 +21272.482 35.76773891441042 +21276.098 35.7680313148474 +21296.581 35.76873020627315 +21298.111 35.76878002696459 +21298.374 35.76881373900374 +21309.737 35.77028145663509 +21365.634 35.772136399248595 +21385.161 35.773781240184555 +21393.061 35.775031697712 +21411.778 35.7766237870533 +21415.795 35.77671880747617 +21423.152 35.77690661206711 +21428.424 35.77703397106653 +21453.356 35.77808525139314 +21461.899 35.77844215799206 +21470.46 35.779236516559735 +21481.172 35.780826505184976 +21482.091 35.780916386461804 +21501.903 35.78220565924524 +21614.728 35.784852374393544 +21622.477 35.785038039337664 +21629.699 35.785867002432745 +21633.012 35.78625338137623 +21645.621 35.78693028859711 +21650.509 35.78713421320966 +21656.338 35.78743465619888 +21663.618 35.78836011706095 +21666.868 35.78866952658248 +21677.622 35.789675051389274 +21684.823 35.790085009931495 +21691.06 35.79041528092197 +21695.705 35.79173812378137 +21698.347 35.79250075863697 +21701.595 35.79336573493497 +21736.3 35.7951732627854 +21741.814 35.79546328340125 +21774.516 35.796649450612406 +21792.38 35.79729382864159 +21850.217 35.799428008990844 +21907.607 35.801581255454394 +21924.934 35.80215864477244 +21927.659 35.802265119539676 +21944.219 35.80290783420897 +21953.381 35.80316207794601 +21987.411 35.804514352252404 +22011.401 35.80544068503998 +22044.883 35.80724674662388 +22093.12 35.80918110956067 +22107.108 35.8097437799788 +22118.514 35.81081038759828 +22127.453 35.81178326824747 +22134.302 35.81285843452426 +22136.903 35.8138107695731 +22143.165 35.81551430867308 +22149.562 35.81598286190713 +22220.493 35.8200676032693 +22225.645 35.820696617022904 +22230.184 35.821428701297464 +22237.083 35.822711642734475 +22244.464 35.82399896726209 +22249.911 35.82448503748538 +22258.166 35.82542295639614 +22264.21 35.82704399855524 +22266.432 35.82765979400042 +22274.442 35.828228876509094 +22282.852 35.82865486007691 +22299.234 35.82939365097699 +22309.433 35.830051626075345 +22404.062 35.83305064235172 +22408.906 35.83349146313762 +22414.26 35.83398342111331 +22425.042 35.834870940175406 +22483.442 35.83650839191111 +22532.942 35.83791381820439 +22541.549 35.8383133556451 +22579.565 35.840044984416984 +22599.91 35.84137486387294 +22614.725 35.842531530787326 +22634.587 35.8437249920035 +22638.264 35.84394602614001 +22648.068 35.844910758838054 +22660.273 35.845952374484696 +22682.123 35.84715662320092 +22684.695 35.847626293825336 +22702.109 35.850442892929635 +22767.831 35.85261014555797 +22777.718 35.853775310444135 +22783.175 35.854415754623524 +22787.205 35.85492994498736 +22787.565 35.855003243529055 +22794.088 35.856387136864534 +22796.241 35.85667507186243 +22812.445 35.85766240963986 +22838.665 35.85897191611481 +22853.218 35.85937761723846 +22892.985 35.86043033570872 +22942.439 35.862162822181055 +22990.757 35.8636814893687 +23010.277 35.86431238222088 +23020.372 35.86480581095448 +23029.363 35.86524921248994 +23038.934 35.86562884108371 +23043.143 35.866745486140104 +23053.673 35.86815500284152 +23065.931 35.86963300098 +23069.78 35.87016818649243 +23075.702 35.87094998142596 +23177.321 35.873753504490615 +23257.594 35.87590917547987 +23265.739 35.876417302182844 +23273.37 35.876901310910284 +23341.392 35.87868614159979 +23355.736 35.87907902555451 +23370.18 35.88039914450786 +23467.94 35.883524984273116 +23471.776 35.883905900787724 +23475.862 35.8844290410251 +23490.72 35.8853799852869 +23491.068 35.88540263715137 +23500.738 35.88576233032456 +23521.662 35.887278857341684 +23522.446 35.88735444920442 +23533.766 35.888451504294956 +23615.134 35.8913236578118 +23625.533 35.89174222919203 +23635.405 35.893658258614884 +23652.317 35.89428014374268 +23679.502 35.89573192002304 +23681.971 35.895965327724696 +23696.583 35.897043499162265 +23702.799 35.89732681794534 +23737.854 35.89894599740131 +23789.829 35.90084400185344 +23805.569 35.90154560085247 +23809.551 35.90212574363639 +23820.659 35.903970284347096 +23824.424 35.904215768876945 +23835.314 35.9048917404912 +23836.806 35.90496185463017 +23839.239 35.90530425177937 +23865.567 35.906470362529234 +23874.777 35.90767774483365 +23914.138 35.909103803264145 +23953.767 35.91026392681063 +23963.483 35.91116036875215 +23978.304 35.91209278089857 +23980.732 35.912245868149824 +24033.236 35.91397558277833 +24057.122 35.914593815631825 +24068.892 35.91544149247275 +24078.841 35.916233466384234 +24090.817 35.91705602536037 +24130.509 35.91785937165215 +24256.568 35.92027876236024 +24296.107 35.9210380628678 +24307.074 35.92266560968014 +24420.136 35.923846277115175 +24566.349 35.925413828288754 +24576.962 35.92605160694498 +24588.31 35.92668881512151 +24622.516 35.927513424282125 +24653.886 35.928316192147285 +24963.012 35.93003930067946 +24968.634 35.93016364766168 +24990.624 35.931153394081804 +25012.08 35.93166073453929 +25051.794 35.93273212972637 +25217.545 35.93572386833792 +25225.965 35.93709109889141 +25269.075 35.93792478006292 +25292.114 35.93847691935278 +25348.978 35.94001044961107 +25365.608 35.940400357397735 +25421.362 35.942591407386246 +25429.966 35.94392224779634 +25438.484 35.94524033269662 +25438.897 35.945263797097695 +25469.009 35.94704141068727 +25476.366 35.9483062877436 +25518.402 35.95025884697216 +25522.109 35.95034386655113 +25534.702 35.95103337805992 +25542.934 35.95130381972797 +25571.197 35.95216813494791 +25676.592 35.95403295816024 +25679.365 35.95408473149743 +25762.518 35.955959087976 +25766.727 35.95666472485669 +25788.714 35.95756930761063 +25836.895 35.95839763633939 +25879.086 35.96002758442165 +25925.926 35.96082876750092 +26019.316 35.96212009776573 +26180.841 35.96410139904168 +26199.598 35.96530928038011 +26301.077 35.96641149127475 +26379.774 35.967672901018716 +26392.499 35.96784265566659 +26662.913 35.96958514961193 +26674.798 35.97061157748464 +26747.101 35.97189266723403 +26921.11 35.97339852793907 +27078.258 35.97486396060262 +27419.371 35.97623532610157 +27429.401 35.97667074133628 +27636.284 35.9774853628123 +27664.332 35.97855788912956 +27675.357 35.97945008791682 +27833.355 35.98078887658088 +27839.433 35.98158813287476 +27988.417 35.98288662181075 +28079.438 35.98401723542575 +28221.88 35.985231825651425 +28299.02 35.98535223643312 +28438.825 35.98613826376507 +28478.36 35.98673525211481 +28615.049 35.987500810834234 +28761.262 35.98826562709545 +29353.19 35.98915466755975 +29386.982 35.99330205123469 +29534.154 35.99769067348557 +29559.918 36.00118702144487 +29668.959 36.00516596582145 +29803.077 36.00704732212849 +29817.275 36.00763258335178 +29825.911 36.008116539711494 +29987.119 36.01068176004232 +29996.934 36.013760874742516 +30006.756 36.016829716375 +30043.112 36.0202214275657 +30053.741 36.02067372685271 +30055.66 36.02102914763875 +30084.913 36.02258447410546 +30096.326 36.02337882379075 +30128.98 36.02479326748887 +30237.023 36.026294678866485 +30374.235 36.028209460687975 +30484.526 36.029770983348484 +30499.18 36.03014153199401 +30516.181 36.0308460903934 +30638.961 36.033843444354055 +30652.543 36.03652656169286 +30656.752 36.03885677845243 +30688.178 36.0391493189556 +30713.675 36.03965937618724 +30720.263 36.039973871918306 +30845.002 36.041199604816256 +30857.284 36.04136781137768 +30891.625 36.042305325615146 +30893.914 36.04235311736233 +30914.337 36.04295014563462 +30923.614 36.043428974214116 +31078.038 36.04503205742288 +31098.488 36.045599999587765 +31214.778 36.04683155393514 +31226.548 36.04946075618724 +31237.278 36.049718434906715 +31383.896 36.053213190266526 +31384.974 36.05323629086368 +31403.961 36.05583239974478 +31420.762 36.05839364589059 +31429.907 36.06071953316838 +31719.96 36.06434858114068 +31731.845 36.06670685373893 +31872.679 36.069857510345884 +31886.486 36.07094261975035 +31903.977 36.07236282374023 +32014.957 36.07486459419426 +32028.353 36.075495269095335 +32055.205 36.07607586476754 +32200.901 36.07908250097166 +32212.032 36.07953566028122 +32216.956 36.079737701243914 +32235.943 36.08045542808517 +32361.872 36.08293676289202 +32455.621 36.08468054714555 +32521.65 36.08614346739947 +32534.987 36.0864131414573 +32546.453 36.086851206797235 +32546.581 36.08685808426409 +32552.656 36.08724244091887 +32580.301 36.08801862673345 +32590.657 36.08851934165434 +32591.01 36.088730718453384 +32695.659 36.09080823167409 +32699.163 36.090883649606035 +32738.469 36.091665377926994 +32847.821 36.093838965347935 +32878.346 36.0939921534006 +32886.22 36.09430409639296 +32887.338 36.094336591463254 +32897.415 36.09506117500138 +32909.622 36.09564542339118 +33026.758 36.09703747462589 +33033.593 36.09735082119914 +33054.548 36.09754394474895 +33072.704 36.098419690424464 +33211.693 36.09972809932204 +33227.173 36.100565575949226 +33388.706 36.10190407631883 +33389.82 36.10193204060815 +33402.748 36.102527117368 +33408.483 36.10291008226673 +33419.179 36.10321718152215 +34812.482 36.105557237258914 +34820.114 36.10741163145043 +34839.268 36.109386584047655 +34857.428 36.111275064884424 +35352.963 36.11382535957628 +35502.604 36.11592433503907 +35509.924 36.117469946821494 +35522.783 36.119041437044004 +35556.503 36.120586543440645 +35697.034 36.12224753058353 +35713.766 36.12358192659383 +35977.623 36.12386792323343 +35985.572 36.124128150210595 +36005.481 36.124420964103564 +36152.634 36.12487285258828 +36196.722 36.12518912923193 +36214.621 36.1254529072332 +36375.108 36.125905019115095 +36391.691 36.12616218243478 +36402.157 36.12640010115392 +36412.692 36.12663473664845 +36561.868 36.12705147854646 +36573.256 36.12726534057403 +37809.788 36.12862442969208 +38537.917 36.12933722656803 +38827.332 36.129844092924685 +38928.078 36.13017347890999 +38937.177 36.13036240075988 +38969.897 36.130587616463785 +39003.823 36.130808653010604 +39003.902 36.13088361508645 +39080.887 36.131136024836785 +39088.719 36.13129214832764 +39156.371 36.13152186968361 +39202.528 36.13172627098797 +40161.757 36.13260869956294 +40322.3 36.134179218925524 +40328.626 36.135297975375885 +40343.445 36.13652283754681 +40353.78 36.13769579332074 +40429.518 36.13905941751285 +40440.806 36.140177424460404 +40442.342 36.14102546262407 +40461.647 36.142115112248845 +40635.656 36.14342656288116 +40654.16 36.14447816269129 +40801.313 36.145750073027074 +40994.559 36.14704615526186 +41006.623 36.14802654524801 +41156.145 36.1492838481371 +41175.818 36.150296605295964 +41385.737 36.1512011989571 +41396.911 36.15137288863027 +41464.587 36.15172873728824 +41504.636 36.15279125580025 +41510.714 36.15363102005201 +41547.851 36.153740555555295 +41560.444 36.15388075067429 +42012.777 36.15490041502796 +42142.602 36.155289952641006 +42166.652 36.15535448170098 +42177.434 36.15622463263752 +42194.643 36.15711165224785 +42323.815 36.158055136885736 +42357.406 36.158301360942424 +42474.947 36.1583963055633 +42628.952 36.15850733767772 +42757.309 36.15861223279674 +42900.544 36.15871693489498 +43954.316 36.15883371168896 +44097.423 36.15892920032306 \ No newline at end of file diff --git a/assets/system-bookmarks/precomputation/precomputed.dat b/assets/system-bookmarks/precomputation/precomputed.dat new file mode 100644 index 0000000..b2de660 --- /dev/null +++ b/assets/system-bookmarks/precomputation/precomputed.dat @@ -0,0 +1,107 @@ +x y +2097.299 14.65229700280427 +2428.811 16.42331697162227 +2741.798 17.615419269452932 +2989.542 18.58143558442525 +3216.337 19.473848297754373 +3533.192 20.52023876523144 +3711.406 21.253546002568765 +3976.308 22.104274370125776 +4172.89 22.740400360316613 +4358.214 23.353008897428712 +4588.408 24.06017066889605 +4760.717 24.62552443244102 +4972.379 25.169569630764887 +5101.935 25.551587455912113 +5210.509 25.93456284201698 +5324.409 26.26021800647523 +5636.664 26.696952638130615 +5866.146 27.097992277995374 +6167.952 27.442711626117816 +6639.831 27.805255625243447 +6918.572 28.09147289425434 +7160.043 28.402028193283044 +7342.463 28.693288060691298 +7557.869 28.963781236247808 +7704.073 29.25060867553245 +7898.886 29.52757738640797 +8046.169 29.758051434778224 +8202.773 29.972807749829013 +8416.491 30.212201552921872 +8574.974 30.394423948452925 +8697.311 30.56197357249853 +8820.89 30.786888130512335 +9009.739 30.988190063862962 +9181.465 31.148900356164646 +9393.396 31.47028440166912 +9607.22 31.71378645100736 +9792.055 31.899879073166044 +10058.272 32.0222076957666 +10422.634 32.186398305281486 +10663.359 32.34560351255068 +10941.866 32.47742010084354 +11249.192 32.673246088508414 +11415.359 32.835431347751 +11563.274 33.00515732068416 +11757.551 33.14822836829327 +11924.901 33.33575972093754 +12073.172 33.48201894646152 +12196.406 33.583449370219434 +12368.404 33.663304498599466 +12494.029 33.76095350435364 +12660.623 33.871991293160754 +12826.343 33.9811601594348 +12940.443 34.07802913989907 +13025.183 34.183953669024646 +13179.378 34.31372811498469 +13335.766 34.385830597855076 +13508.535 34.47375788499503 +13728.453 34.565907882347226 +13982.265 34.63417565728688 +14125.323 34.70753152956884 +14373.137 34.7783210627385 +14631.342 34.89180521443487 +14841.108 34.96270554982211 +15038.914 35.02474445749689 +15462.525 35.09387694406902 +15803.481 35.14404052149408 +16057.772 35.18935531941039 +16206.026 35.237174616450424 +16408.44 35.29326838832231 +17052.455 35.36789790546246 +17461.244 35.41136536136477 +17876.169 35.45175173426117 +18711.637 35.49969846835455 +18958.605 35.52962616350533 +19097.287 35.56427445477692 +19266.388 35.60036257766602 +19413.593 35.622270888122415 +19713.179 35.64788110119483 +20038.527 35.6649416847754 +20210.44 35.6841288635726 +20548.611 35.710449992443 +20786.487 35.73076440916822 +20979.859 35.74714916310743 +21213.496 35.762185494217746 +21423.152 35.77690661206711 +21677.622 35.789675051389274 +22011.401 35.80544068503998 +22264.21 35.82704399855524 +22638.264 35.84394602614001 +22942.439 35.862162822181055 +23370.18 35.88039914450786 +23702.799 35.89732681794534 +24033.236 35.91397558277833 +24990.624 35.931153394081804 +25534.702 35.95103337805992 +26662.913 35.96958514961193 +28478.36 35.98673525211481 +30084.913 36.02258447410546 +30893.914 36.04235311736233 +31903.977 36.07236282374023 +32591.01 36.088730718453384 +33389.82 36.10193204060815 +36005.481 36.124420964103564 +39003.902 36.13088361508645 +40994.559 36.14704615526186 +42357.406 36.158301360942424 \ No newline at end of file diff --git a/src/preliminary-work/streaming.tex b/src/preliminary-work/streaming.tex index fc02463..d2319d2 100644 --- a/src/preliminary-work/streaming.tex +++ b/src/preliminary-work/streaming.tex @@ -173,7 +173,7 @@ We denote this combination as \textsf{V-PP}, for Prefetching based on Prediction \centering \begin{tikzpicture} \draw [fill=LightCoral] (0,0) rectangle (5,1); - \node at (2.5,0.5) {Furstum / backface culling}; + \node at (2.5,0.5) {Frustum / backface culling}; \draw [fill=Khaki] (5,0) rectangle (6.5,1); \node at (5.75,0.5) {$B_i$}; \draw [fill=SandyBrown] (6.5,0) rectangle (7,1); diff --git a/src/system-bookmarks/bookmark.tex b/src/system-bookmarks/bookmark.tex new file mode 100644 index 0000000..8ac6f82 --- /dev/null +++ b/src/system-bookmarks/bookmark.tex @@ -0,0 +1,147 @@ +\section{Adding bookmarks into DASH NVE framework}\label{sec:bookmarks} + +In this section, we explain how to include a new interaction in the system described in Section~\ref{sec:dash3d}. + +\subsection{Interaction --- Visual} + +We decide to add bookmarks of recommended viewpoints in the 3D scene. +A bookmark is defined by a camera position, orientation, and intrinsic parameters, and offers a particular view of the 3D virtual environment. +As such, it should be represented using a widget that (i) is attached to a particular position, therefore appearing small (respectively big) when it is far (respectively close), and (ii) points at a particular direction, allowing the user to predict what can be seen from this viewpoint. +Bookmarks have been already introduced in the literature, with various appearances \todo[inline]{figure of possible appearances}. +Since, no particular preeminence of one design on the others has been demonstrated in previous work, we arbitrarily choose to use \todo[inline]{type of bookmark} in this work. + +Bookmarks can be created either automatically, or manually defined by an expert user (e.g.\ the 3D model designer, or administrator). +Bookmarks could even be derived from the observation of user behavior, by focusing on the most visited areas of the models. +Automated ways of defining bookmarks or adapting them to user behavior is beyond the scope of this paper; methods have been proposed in \todo[inline]{References} + +We choose to implement two interactions with bookmarks. +The first, most obvious one, is to position the user camera on the bookmark's viewpoint when the user clicks on the bookmark. +In order to avoid users to lose context, clicking on a bookmark triggers an automatic, smooth, camera displacement that ends up at the bookmark. +% We use Hermite's polynomials to compute this displacement, as proposed in MMSYS16. Lol we don't :'( +We implement an additional interaction that displays a preview of the bookmark's viewpoint while it is hovered by the user's mouse. +A small thumbnail of the viewport is displayed below the bookmark. + +\subsection{Segments utility at bookmarked viewpoint}\label{sec:utility} +Introducing bookmarks is a way to make users navigation more predictable. +Indeed, since they are emphasized and, in a way, recommended viewpoints, bookmarks are more likely to be visited by a significant portion of users than any other viewpoint on the scene. +As such, bookmarks can be used as a way to optimize streaming by downloading segments in an optimal, pre-computed order. + +More specifically, segment utility as introduced in Section~\ref{sec:dash3d} is only an approximation of the segment's true contribution to the current viewpoint rendering. +When bookmarks are defined, it is possible to obtain a perfect measure of segment utility by performing an offline rendering at each bookmark's viewpoint. +Then, by simply counting the number of pixels that are rendered using each segment, we can rank the segments by order of importance in the rendering. + +We define $\mathcal{U}^{*} (s,B_i)$ as being the true utility of a segment $s$ in a viewpoint defined at bookmark $B_i$. +This utility is simply the ratio between the number of pixels displaying that segment on screen, and the total screen area (in pixels). +This utility definition is the same for geometry and texture segments, which allows all segments to be ranked by order of importance, i.e.\ of decreasing utility. + +\begin{figure}[th] + \centering + \begin{tikzpicture} + \begin{axis}[ + xlabel=Data downloaded (in B), + ylabel=PSNR, + no markers, + cycle list name=mystyle, + width=\tikzwidth, + height=\tikzheight, + legend pos=south east, + xmin=0, + ] + + \addplot table [x=x, y=y]{assets/system-bookmarks/precomputation/greedy.dat}; + \addlegendentry{\scriptsize Default order $\mathcal{U}$} + \addplot table [x=x, y=y]{assets/system-bookmarks/precomputation/precomputed.dat}; + \addlegendentry{\scriptsize Proposed order $\mathcal{U}^*$} + + \end{axis} + \end{tikzpicture} + \caption{Impact of using the precomputed information of bookmarks to select segments to download\label{fig:precomputation}} +\end{figure} + +\begin{figure}[th] + \includegraphics[width=0.49\columnwidth]{assets/system-bookmarks/bookmark/ground-truth.png} + \includegraphics[width=0.49\columnwidth]{assets/system-bookmarks/bookmark/geometry.png} + \caption{A bookmarked viewpoint (left), and a pixel to geometry segment map (right)}\label{fig:bookmarks-utility} +\end{figure} + +Figure~\ref{fig:bookmarks-utility} depicts a ``pixel to geometry segment'' map: all pixels of the same color in the right image display an element of the same geometry segment. +We render such maps offline, for each bookmark, and use it to compute the true utility $\mathcal{U}^*(s)$ of segment $s$. + +\subsection{MPD modification} + +We now present how to introduce bookmarks information in the Media Presentation Description (MPD) file, to be used in a DASH framework. +Bookmarks are fully defined by a viewport description, and the additional content needed to properly render and use a bookmark in a system consists in three images: a thumbnail of the point of view at the bookmark, along with two ``pixel to segment'' maps (see Figure~\ref{fig:bookmarks-utility}, right image). +For this reason, we create a separate adaptation set in the MPD\@. +The bookmarked viewport information is stored as a supplemental property. +Bookmarks adaptation set only contain one representation, composed of three segments corresponding to the three images described earlier. + +\begin{figure}[th] + \lstinputlisting[% + language=XML, + caption={MPD description of a geometry adaptation set, and a texture adaptation set.}, + label=listing:bookmark-as, + emph={% + MPD, + Period, + AdaptationSet, + Representation, + BaseURL, + SegmentBase, + Initialization, + Role, + SupplementalProperty, + SegmentList, + SegmentURL, + Viewpoint + } + ]{assets/system-bookmarks/bookmark-as.xml} +\end{figure} + +An example of a bookmark adaptation set is depicted on Listing~\ref{listing:bookmark-as}. +The three first values in the supplemental property are the camera position coordinates, and the three last values are the target point coordinates. + +\subsection{System-aware bookmarks} + +The information we include in the MPD to optimize streaming at bookmarked viewpoints can also be used to give a sense of the system state to the user. +Indeed, displaying a thumbnail of what can be seen from a bookmark might fool users into thinking that all necessary segments visible from the bookmarked viewpoint have been downloaded. +In case this would be not true, users' Quality of Experience would be unsatisfactory. + +In order to give users a sense of the amount of information readily available at a given bookmarked viewpoint, we use the pixel to segment maps described in Section~\ref{sec:utility} to create a mask of segment availability. +Since we know which segments have been downloaded at any given time, we know which pixels in the thumbnail accurately depict what the user will see when clicking on the bookmark. +We thus render the thumbnail with the mask of already downloaded segments superimposed over it. + +\todo[inline]{Figure of altered thumbnail} + + +\subsection{Loader modifications} + +We build on the loader introduced in~\cite{forgione2018dash} (Algorithm 1) to implement a client adaptation logic. +We include a bookmark adaptation logic such that (i) when a bookmark is hovered for the first time, the corresponding images (see Listing~\ref{bookmark-as}) are downloaded, and (ii) when a bookmark is clicked, we switch from utility $\mathcal{U}$ to true utility $\mathcal{U}^*$ to determine which segments to download next. + +\begin{algorithm}[th] + \SetKwInOut{Input}{input} + \SetKwInOut{Output}{output} + \Input{Current index $i$, time $t_i$, viewpoint $v(t_i)$, buffer of already downloaded \texttt{segments} $\mathcal{B}_i$, MPD} + \Output{Next segment $s^{*}_i$ to request, updated buffer $\mathcal{B}_{i+1}$} + \SetAlgoLined% + {- Estimate the bandwidth $\widehat{BW_i}$ and RTT $\widehat{\tau_i}$ \;} + + {- Among all \texttt{segments} that are not already downloaded $s \in \mathcal{S} \backslash \mathcal{B}_i$, % \;} + % {- + keep the ones inside the upcoming viewing frustums $\mathcal{FC}=\mathbb{FC}(\widehat{v}(t_i)), t\in [t_i, t_i+\chi]$ thanks to a viewpoint predictor $t_i \rightarrow \hat{v}(t_i)$, a temporal horizon $\chi$ and a frustum culling operator $\mathbb{FC}$ \;} + + + {- Optimize a criterion $\Omega$ based on $\mathcal{U}$ values and well chosen viewpoint $v(t_i)$ to select the next segment to query } + {\begin{equation*} + s^{*}_i= \argmax{s \in \mathcal{S} \backslash \mathcal{B}_i \cap \mathcal{FC}} \Omega_{\theta_i} \Big(\mathcal{U}(s,v(t_i))\Big) \label{eq1} + \end{equation*} \\ + given parameters $\theta_i$ that gathers both online parameters $(i,t_i,v(t_i),\widehat{BW_i}, \widehat{\tau_i}, \mathcal{B}_i)$ and offline metadata;} + + {- Update the buffer $\mathcal{B}_{i+1}$ for the next decision: $s^{*}_i$ and lowest \texttt{representations} of $s^{*}_i$ are considered downloaded\;} + {- \Return{segment $s^{*}_i$, buffer $\mathcal{B}_{i+1}$}\;} + + {\caption{Algorithm to identify the next segment to query\label{algorithm:nextsegment}}} +\end{algorithm} + +\todo[inline]{to be modified to include bookmarks} + diff --git a/src/system-bookmarks/main.tex b/src/system-bookmarks/main.tex index 04611e8..5bfb966 100644 --- a/src/system-bookmarks/main.tex +++ b/src/system-bookmarks/main.tex @@ -1,2 +1,3 @@ \chapter{System bookmarks} +\input{system-bookmarks/bookmark} \input{system-bookmarks/user-study}